-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 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
{
"name": "codamhero-v2",
"version": "2.0.0",
"description": "CodamHero v2 gives staff and students an overview of everything Codam.",
"main": "build/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx prisma generate && tsc",
"start": "npx prisma migrate deploy && node build/main.js",
"start:nosync": "npx prisma migrate deploy && node build/main.js --nosync",
"resetdb": "npx prisma migrate reset"
},
"keywords": [
"codam",
"42born2code"
],
"author": "Freek Bes",
"license": "MIT",
"dependencies": {
"@codam/fast42": "^2.1.7",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"cookie-session": "^2.1.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"node-cache": "^5.1.2",
"nunjucks": "^3.2.4",
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0",
"pg": "^8.20.0",
"prisma": "^7.7.0"
},
"devDependencies": {
"@semantic-release-plus/docker": "^3.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/better-sqlite3": "^7.6.13",
"@types/cookie-session": "^2.0.49",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/nunjucks": "^3.2.6",
"@types/passport": "^1.0.17",
"@types/passport-oauth2": "^1.8.0",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
}
}