forked from Brokenscythe/Full-Library-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "full-library-app",
"version": "1.0.0",
"description": "Merged project dependencies",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec ts-node ./src/app.ts"
},
"prisma": {
"seed": "ts-node ./prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"@types/compression": "^1.7.2",
"@types/csurf": "^1.11.3",
"@types/express": "^4.17.17",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"csurf": "^1.11.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-actuator": "^1.8.4",
"express-mysql-session": "^3.0.0",
"express-rate-limit": "^6.9.0",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"method-override": "^3.0.0",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"mysql2": "^3.6.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"prisma": "^5.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/express-actuator": "^1.8.0",
"@types/express-session": "^1.17.7",
"@types/multer": "^1.4.8",
"@types/node": "^20.5.9",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-plugin-ejs": "^0.0.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}