-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 988 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
36
37
38
39
40
{
"name": "5_express",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js --ignore public --ignore frontend",
"dev": "webpack -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"core-js": "^3.3.2",
"css-loader": "^3.2.0",
"csurf": "^1.11.0",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-session": "^1.17.3",
"helmet": "^5.1.0",
"mongoose": "^6.4.3",
"regenerator-runtime": "^0.13.3",
"style-loader": "^1.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"nodemon": "^2.0.19",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
}
}