This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ueno-next-starter",
"description": "Opinionated Next starter by Ueno",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"next",
"starter",
"react",
"typescript",
"next-starter",
"nextjs",
"ueno"
],
"contributors": [
"Birkir Gudjonsson <birkir.gudjonsson@gmail.com>",
"Jérémy Barbet <jeremgraph@gmail.com>"
],
"scripts": {
"dev": "node server",
"build": "node scripts/fragmentMatcher.js && next build",
"start": "NODE_ENV=production node server",
"export": "npm run build && next export",
"lint": "npm run tslint && npm run stylelint",
"tslint": "tslint --fix 'src/**/*.{ts,tsx}' -p .",
"stylelint": "stylelint 'src/**/*.scss' --syntax scss"
},
"dependencies": {
"@zeit/next-sass": "1.0.1",
"@zeit/next-typescript": "1.1.1",
"apollo-boost": "0.3.1",
"apollo-cache-inmemory": "1.5.1",
"apollo-link-prismic": "1.0.2",
"cookie-parser": "1.4.4",
"cookies": "0.7.3",
"create-react-context": "0.2.3",
"date-fns": "^1.30.1",
"dotenv": "7.0.0",
"express": "4.16.4",
"graphql": "14.1.1",
"graphql-tag": "^2.10.1",
"gsap": "2.0.2",
"gsap-tools": "1.0.6",
"isomorphic-fetch": "2.2.1",
"isomorphic-unfetch": "3.0.0",
"lodash": "4.17.11",
"next": "8.0.3",
"next-classnames-loader": "1.0.1",
"next-compose-plugins": "2.1.1",
"next-cookies": "1.1.0",
"next-images": "1.1.1",
"next-react-svg": "1.0.0",
"next-sass": "1.0.3",
"prismic-javascript": "2.0.1",
"prismic-reactjs": "0.3.2",
"query-string": "6.3.0",
"react": "16.8.0",
"react-apollo": "2.4.1",
"react-dom": "16.8.0",
"react-helmet": "5.2.0",
"react-overlays": "1.1.2",
"react-transition-group": "2.5.3"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.2.3",
"@types/gsap": "1.20.1",
"@types/lodash": "4.14.119",
"@types/next": "7.0.6",
"@types/node": "11.11.3",
"@types/react": "16.8.2",
"@types/react-dom": "16.8.0",
"@types/react-helmet": "5.0.8",
"@ueno/stylelint-config": "1.1.0",
"@ueno/tslint-config": "1.0.3",
"autoprefixer": "9.4.5",
"classnames-loader": "2.0.0",
"node-sass": "4.11.0",
"postcss-csso": "3.0.0",
"stylelint": "9.10.0",
"svg-react-loader": "0.4.6",
"tslint": "5.12.1",
"tslint-react": "3.6.0",
"typescript": "3.3.1"
}
}