-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 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
{
"name": "WMG-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx nodemon src/server.js --exec babel-node --presets @babel/preset-env",
"start": "babel-node src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"cors": "^2.8.5",
"debug": "^2.6.9",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"hpp": "^0.2.3",
"http-errors": "^1.7.2",
"morgan": "^1.10.0",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"nodemon": "^2.0.6"
}
}