-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
51
52
53
{
"name": "remote-control",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"joi": "^14.3.1",
"joi-browser": "^13.4.0",
"less": "^3.9.0",
"metaphone": "^1.0.5",
"node-sass": "^4.13.0",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"patreon": "^0.4.1",
"pg": "^7.10.0",
"prop-types": "^15.7.2",
"query-string": "^6.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-recaptcha": "^1.0.5",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.0.0",
"socket.io": "^2.2.0",
"url": "^0.11.0",
"winston": "^3.2.1",
"ws": "^7.0.1"
},
"scripts": {
"start": "concurrently 'npm run react' 'npm run server'",
"react": "react-scripts start",
"sockets": "nodemon src/services/sockets/sockets.js",
"server": "nodemon src/services/server/server.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}