-
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.82 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.82 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": "wasl",
"version": "1.0.0",
"description": "A Management System for Student Clubs",
"main": "app.js",
"scripts": {
"test": "jest",
"dev": "pnpm dev:build",
"dev:nocompile": "node --watch app.js",
"dev:build": "tsc --watch & node --watch app.js",
"db:generate": "drizzle-kit generate:pg",
"db:push": "drizzle-kit push:pg",
"db:drop": "drizzle-kit drop",
"db:check": "drizzle-kit check:pg",
"db:migrate": "ts-node db/migrate.ts",
"build": "tsc",
"projectinit": "tsc && drizzle-kit generate && drizzle-kit push",
"start": "tsc && node app.js",
"studio": "drizzle-kit studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"connect-pg-simple": "^10.0.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.7.1",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.18.1",
"http-errors": "^2.0.0",
"multer": "^2.0.0",
"node-schedule": "^2.1.1",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.14.1",
"postgres": "^3.4.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/multer": "^1.4.12",
"@types/node": "^20.11.24",
"drizzle-kit": "^0.31.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"supertest": "^7.0.0",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@10.6.2+sha512.47870716bea1572b53df34ad8647b42962bc790ce2bf4562ba0f643237d7302a3d6a8ecef9e4bdfc01d23af1969aa90485d4cebb0b9638fa5ef1daef656f6c1b"
}