-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "sca2-react-frontend-starter",
"version": "0.1.1",
"private": true,
"dependencies": {
"@rebass/grid": "^6.0.0",
"@storybook/react": "^5.1.9",
"apollo-boost": "^0.1.9",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.8",
"apollo-link-http": "^1.5.11",
"graphql": "^14.1.1",
"react": "^16.4.1",
"react-apollo": "^2.1.5",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.0.1",
"styled-components": "^4.1.2"
},
"devDependencies": {
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.13.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint \"src/**/*.js\"",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"clean": "rm -rf node_modules && npm i"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}