-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 832 Bytes
/
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "node main.js",
"dev": "nodemon main.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/runtime": "^7.10.4",
"babel-plugin-istanbul": "^6.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mongoose": "^5.13.7",
"morgan": "^1.10.0",
"path": "^0.12.7",
"rotating-file-stream": "^2.1.5"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"nodemon": "^2.0.12",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
}
}