-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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": "react_webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack-dev-server --mode development",
"start": "node server.js",
"postinstall": "webpack --mode production"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.10.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"apollo-cache-inmemory": "^1.3.11",
"apollo-client": "^2.4.7",
"apollo-client-preset": "^1.0.8",
"apollo-link-http": "^1.5.7",
"axios": "^0.18.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"parse-link-header": "^1.0.1",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-apollo": "^2.3.2",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12",
"react-infinite-scroller": "^1.2.2",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1"
}
}