-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 938 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 938 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"moment-timezone": "^0.5.37",
"mongoose": "^6.5.4",
"nodemon": "^2.0.19"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"deploy-node-app": {
"prod": {
"port": 4000,
"protocol": "http",
"entrypoint": "src/api/index.js",
"type": "spa"
},
"dev": {
"port": 4000,
"protocol": "http",
"entrypoint": "src/api/index.js",
"registry": "",
"type": "spa",
"isPublic": false
}
},
"proxy": "http://localhost:4000"
}