forked from NVCLong/Hospital-Data-Management-PDM-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (39 loc) · 1.69 KB
/
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
{
"$schema": "https://json.schemastore.org/package-v2.json",
"name": "hospital-data-management-pdm-project",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon --inspect server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"homepage": "sass --no-source-map --watch server/resource/scss/homepage.scss server/public/css/homepage.css",
"dashboard": "sass --no-source-map --watch server/resource/scss/dashboard.scss server/public/css/dashboard.css",
"doctor_login": "sass --no-source-map --watch server/resource/scss/doctor_login.scss server/public/css/doctor_login.css",
"doctor_register": "sass --no-source-map --watch server/resource/scss/doctor_register.scss server/public/css/doctor_register.css",
"login": "sass --no-source-map --watch server/resource/scss/login.scss server/public/css/login.css",
"register": "sass --no-source-map --watch server/resource/scss/register.scss server/public/css/register.css",
"all": "concurrently \"npm run homepage\" \"npm run dashboard\" \"npm run doctor_login\" \"npm run doctor_register\" \"npm run login\" \"npm run register\"",
"nodemon": "--watch src/ --exec 'node out/index.js' -e ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nodemon": "^3.0.2"
},
"dependencies": {
"concurrently": "^8.2.2",
"express-handlebars": "^7.1.2",
"method-override": "^3.0.0",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"sass": "^1.69.5"
}
}