forked from rubygarage/nextjs6-graphql-client-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "nextjs6-graphql-client-tutorial",
"version": "0.1.0",
"description": "NextJS6 with apollo GraphQL app",
"main": "index.js",
"repository": "git@github.com:leksster/nextjs6-graphql-client-tutorial.git",
"author": "Alex Bykov <leksster@gmail.com>",
"license": "MIT",
"jest": {
"setupTestFrameworkScriptFile": "./lib/testConfig.js"
},
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"heroku-postbuild": "npm run build",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^2.0.3",
"apollo-boost": "^0.1.15",
"dotenv": "^6.0.0",
"graphql": "^14.0.0",
"graphql-tag": "^2.9.2",
"isomorphic-unfetch": "^2.1.1",
"js-cookie": "^2.2.0",
"jss": "^9.8.7",
"next": "^6.1.1",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-dom": "^16.4.2",
"react-jss": "^8.6.1",
"styled-jsx": "^3.0.2"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.11",
"@storybook/react": "^3.4.10",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-require-context-hook": "^1.0.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.5.0",
"react-test-renderer": "^16.4.2"
}
}