-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 764 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 764 Bytes
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
{
"name": "enroll",
"version": "1.0.0",
"description": "Student Management System",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node ./src/config/index.js",
"dev": "nodemon ./src/config/index.js",
"test": "NODE_ENV=test vitest",
"test:run": "vitest run"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.14.2",
"path": "^0.12.7",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"vitest": "^3.2.4"
}
}