-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.44 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.44 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dms-web-backend",
"version": "1.0.0",
"description": "Back-end server for Driver Monitoring System monitoring dashboard",
"license": "MIT",
"author": {
"name": "C241-MS01",
"url": "https://github.com/C241-MS01"
},
"contributors": [
{
"name": "Bagas Hizbullah",
"url": "https://github.com/bagashiz"
},
{
"name": "Alifa Nurfika",
"url": "https://github.com/phik753"
}
],
"repository": {
"type": "git",
"url": "https://github.com/C241-MS01/dms-websocket-backend"
},
"engines": {
"node": ">=20.0.0"
},
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"migrate": "prisma migrate deploy",
"migrate:dev": "prisma migrate dev"
},
"dependencies": {
"@prisma/client": "^5.15.0",
"auto-bind": "^4.0.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-http-context": "^1.2.4",
"helmet": "^7.1.0",
"joi": "^17.13.1",
"joi-password-complexity": "^5.2.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"uuid": "^10.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.9",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.4.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.1",
"prisma": "^5.15.0"
}
}