-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "codamhero-v2",
"version": "0.0.1",
"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": "node build/main.js",
"resetdb": "npx prisma migrate reset"
},
"keywords": [
"codam",
"42born2code"
],
"author": "Freek Bes",
"license": "MIT",
"dependencies": {
"@codam/fast42": "^2.1.6",
"@prisma/client": "^5.14.0",
"cookie-session": "^2.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"node-cache": "^5.1.2",
"nunjucks": "^3.2.4",
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0",
"prisma": "^5.14.0"
},
"devDependencies": {
"@semantic-release-plus/docker": "^3.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.6",
"@types/cookie-session": "^2.0.49",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/nunjucks": "^3.2.6",
"@types/passport": "^1.0.16",
"@types/passport-oauth2": "^1.4.17",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5"
}
}