-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
{
"name": "chat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"webpack-dev-server --hot\" \"cd server && npm run start\"",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-boost": "^0.3.1",
"apollo-link": "^1.2.11",
"apollo-link-ws": "^1.0.17",
"apollo-utilities": "^1.2.1",
"graphql": "^14.2.1",
"graphql-tag": "^2.10.1",
"react": "^16.8.6",
"react-apollo": "^2.5.5",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0",
"styled-normalize": "^8.0.6",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-root-import": "^6.1.0",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.19.0",
"react-error-overlay": "^5.1.5",
"react-hot-loader": "^4.8.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}