-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "nodemon --config ./nodemon.json src/index.ts",
"seed:dev": "npx ts-node src/db/seeders/dev.ts",
"test": "jest -i --detectOpenHandles",
"tests": "jest -i --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.15.0",
"@quixo3/prisma-session-store": "^3.1.13",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cron": "^2.3.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"joi": "^17.9.2",
"joy": "^0.1.1",
"mqtt": "^4.3.7",
"node-schedule": "^2.1.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"passport-unique-token": "^3.0.0",
"prisma": "^4.14.0",
"tsc": "^2.0.4",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jest": "^29.5.3",
"@types/node": "^20.1.5",
"@types/node-schedule": "^2.1.0",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"@types/ws": "^8.5.5",
"jest": "^29.6.1",
"jest-mock-extended": "^3.0.4",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsc-node": "0.0.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
}
}