-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 904 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
{
"name": "express-form",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lite": "lite-server",
"watch": "nodemon ./start.js",
"test": "echo \"Error: no test specified\" && exit 1",
"scss": "node-sass -o public/css public/scss/styles.scss",
"start": "npm run watch:all",
"watch:scss": "onchange 'scss/*.scss' -- npm run scss",
"watch:all": "parallelshell 'npm run watch:scss' 'npm run lite' "
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"http-auth": "^4.2.0",
"mongoose": "^5.12.0",
"pug": "^3.0.2"
},
"devDependencies": {
"lite-server": "^2.6.1",
"node-sass": "^8.0.0",
"nodemon": "^2.0.7",
"onchange": "^7.1.0",
"parallelshell": "^3.0.2"
}
}