-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 999 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 999 Bytes
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
{
"name": "imitguard_backend",
"description": "The backend for the ImitGuard website",
"main": "src/app.js",
"type": "module",
"scripts": {
"start:dev": "npm run lint && node ./src/app.js",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git@github.com:arellak/ImitGuard.git"
},
"author": "arellak",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/arellak/ImitGuard/issues"
},
"homepage": "https://github.com/arellak/ImitGuard#readme",
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/session": "^10.9.0",
"@prisma/client": "^5.14.0",
"argon2": "^0.40.1",
"fastify": "^4.26.2",
"node-cron": "^3.0.3",
"pg": "^8.11.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.1",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"prisma": "^5.14.0"
}
}