-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.86 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "chat.app.client",
"version": "0.0.1b",
"private": true,
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "4.19.1",
"eslint-config-react-app": "2.1.0",
"eslint-plugin-flowtype": "2.47.1",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.8.2",
"jest": "^24.5.0",
"jwt-decode": "2.2.0",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.2",
"prettier-eslint-cli": "4.7.1",
"react-scripts": "1.1.4"
},
"dependencies": {
"@coreui/coreui": "^2.0.1",
"@coreui/icons": "^0.2.0",
"@coreui/react": "^2.0.0",
"apollo-boost": "0.1.6",
"apollo-client": "2.3.1",
"apollo-client-preset": "1.0.8",
"apollo-link": "1.2.2",
"apollo-link-state": "^0.4.1",
"apollo-link-ws": "1.0.8",
"apollo-utilities": "1.0.12",
"axios": "^0.18.0",
"b64-to-blob": "^1.2.19",
"babel-cli": "6.26.0",
"bootstrap": "^4.1.1",
"butter-toast": "^2.1.2",
"chart.js": "^2.7.2",
"classnames": "^2.2.5",
"connected-react-router": "^6.3.2",
"core-js": "^2.5.6",
"debug": "^3.1.0",
"dotenv": "^7.0.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-prettier": "2.6.0",
"file-saver": "^1.3.8",
"final-form": "^4.8.3",
"flag-icon-css": "^3.0.0",
"font-awesome": "^4.7.0",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"i18next": "^11.5.0",
"i18next-browser-languagedetector": "^2.2.2",
"md5": "^2.2.1",
"prop-types": "^15.6.1",
"react": "16.6.0",
"react-apollo": "2.1.4",
"react-chartjs-2": "^2.7.4",
"react-dom": "16.6.0",
"react-final-form": "^3.7.0",
"react-hot-loader": "^4.8.0",
"react-i18next": "^7.10.1",
"react-modal": "3.4.4",
"react-redux": "^6.0.1",
"react-router-dom": "4.2.2",
"react-router-redux": "^4.0.8",
"react-scroll": "^1.7.11",
"react-test-renderer": "^16.3.2",
"reactstrap": "^6.0.1",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"simple-line-icons": "^2.4.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"spinkit": "^1.2.5",
"subscriptions-transport-ws": "0.9.9",
"tachyons": "4.9.1"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./node_modules ./src/scss -o ./src/scss",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./node_modules ./src/scss -o ./src/scss --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start:prod": "serve -s build"
}
}