-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "next-graphql-boilerplate",
"version": "1.0.1",
"description": "A boilerplate for NextJS and GraphQL",
"scripts": {
"dev": "cross-env NODE_ENV=dev node server.js",
"build": "next build",
"start": "cross-env NODE_ENV=production node server.js",
"lint": "eslint --color --ext .js,.vue src test/unit/specs test/e2e/specs"
},
"pre-commit": [
"lint"
],
"author": "Igor Skakun",
"license": "MIT",
"repository": "vozni4iy/next-graphql-boilerplate",
"dependencies": {
"apollo-test-utils": "^0.3.0",
"autoprefixer": "6.7.6",
"babel-plugin-module-resolver": "2.5.0",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-wrap-in-js": "^1.1.0",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.0.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"glob": "7.1.1",
"graphql": "^0.11.7",
"graphql-tools": "^0.11.0",
"isomorphic-unfetch": "^2.0.0",
"material-ui": "^0.19.4",
"next": "^2.3.0-alpha1",
"next-routes": "^1.0.24",
"normalize.css": "5.0.0",
"now": "^4.11.2",
"postcss-easy-import": "2.0.0",
"postcss-loader": "1.3.3",
"raw-loader": "^0.5.1",
"rc-slider": "^8.3.1",
"react": "^15.4.2",
"react-apollo": "^1.1.0",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.5.2",
"redux-form": "^7.0.3",
"redux-thunk": "^2.1.0",
"styled-components": "^1.4.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-inline-react-svg": "^0.4.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"pre-commit": "^1.2.2",
"prop-types": "^15.5.10"
}
}