-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "git-graphql",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-boost": "^0.3.1",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-context": "^1.0.17",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.14",
"apollo-link-schema": "^1.2.2",
"axios": "^0.18.1",
"bulma": "^0.7.4",
"bulma-extensions": "^6.2.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"graphql": "^14.2.0",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"jest": "23.6.0",
"moment": "^2.24.0",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"node-sass-chokidar": "^1.3.4",
"react": "^16.8.5",
"react-apollo": "^2.5.3",
"react-dom": "^16.8.5",
"react-helmet": "^5.2.0",
"react-redux": "^7.0.1",
"react-scripts": "2.1.8",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"reset-css": "^4.0.1",
"sinon": "^7.3.1",
"styled-components": "^4.2.0",
"superagent": "^4.1.0"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}