-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "drive",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"dev": "tsc && node dist/app.js",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon": "nodemon --watch 'src/**/*.ts' --exec ts-node src/app.ts",
"watch": "node-sass -w src/public/scss/app.scss src/public/css/app.css",
"reponsive": "node-sass -w src/public/scss/reponsive.scss src/public/css/reponsive.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/node": "^24.1.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"node-sass": "^9.0.0",
"nodemon": "^3.1.10",
"prisma": "^6.13.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"@prisma/adapter-mariadb": "^6.13.0",
"@prisma/client": "^6.13.0",
"@types/bcrypt": "^6.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.3",
"@types/express-handlebars": "^5.3.1",
"@types/express-session": "^1.18.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/moment": "^2.11.29",
"@types/multer": "^2.0.0",
"@types/nodemailer": "^6.4.17",
"@types/slug": "^5.0.9",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-handlebars": "^8.0.3",
"express-session": "^1.18.2",
"jquery": "^3.7.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.5",
"slug": "^11.0.0"
}
}