-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.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
{
"name": "a-team",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"body-parser": "^1.18.3",
"classnames": "latest",
"@pusher/chatkit-client": "^1.4.1",
"@pusher/chatkit-server": "^1.1.0",
"cors": "^2.8.4",
"colormap": "^2.3.1",
"express": "^4.16.4",
"express-pino-logger": "^4.0.0",
"express-session": "latest",
"immutable": "^4.0.0-rc.12",
"moment": "^2.24.0",
"mysql": "^2.16.0",
"node-env-run": "^3.0.2",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pino-colada": "^1.4.4",
"prop-types": "latest",
"pusher": "^2.2.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"redux-logger": "^3.0.6",
"redux-starter-kit": "^0.4.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"session-file-store": "^1.2.0",
"uuid": "latest"
},
"proxy": "http://localhost:3001",
"scripts": {
"start": "concurrently \"node ./server.js\" \"react-scripts start\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "node-env-run src/server --exec nodemon -- --ignore sessions | pino-colada",
"dev": "run-p server start",
"docs": "apidoc -i src/server -o apidoc/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/express": "^4.16.1",
"@types/prop-types": "^15.7.0",
"apidoc": "^0.17.7",
"eslint-plugin-react-hooks": "^1.0.1",
"node-env-run": "^3.0.2",
"concurrently": "^3.5.1",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5"
}
}