-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
62
63
64
{
"name": "gql-chat-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@material-ui/core": "^4.7.1",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.33",
"apollo-boost": "^0.4.4",
"apollo-link-context": "^1.0.19",
"apollo-link-ws": "^1.0.19",
"classnames": "^2.2.6",
"email-validator": "^2.0.4",
"final-form": "^4.18.6",
"gh-pages": "^2.1.1",
"graphql": "^14.5.8",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"omit-deep": "^0.3.0",
"path-to-regexp": "^6.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-final-form": "^6.3.3",
"react-helmet": "^5.2.1",
"react-redux": "^7.1.3",
"react-redux-promise-listener": "^1.0.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-promise-listener": "^1.1.1",
"redux-saga": "^1.1.3",
"subscriptions-transport-ws": "^0.9.16"
},
"homepage": "https://null096.github.io/gql-chat-client",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pretty": "prettier --write src/**/*.{js,jsx}",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}