-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "quaverpvmapi",
"version": "2.0.0",
"license": "MIT",
"devDependencies": {
"@types/connect-redis": "^0.0.17",
"@types/cors": "^2.8.12",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/js-yaml": "^4.0.2",
"@types/node": "15.12.4",
"@types/passport": "^1.0.7",
"@types/passport-oauth2": "^1.4.11",
"jest": "^27.3.1",
"js-yaml": "^4.1.0",
"prisma": "^3.9.1",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.7",
"ts-node": "10.1.0",
"typescript": "^4.3.5"
},
"scripts": {
"dev": "ts-node server.ts",
"genmaps": "ts-node ./prisma/createMapDataset.ts",
"seed": "ts-node ./prisma/seed.ts",
"build": "tsc -p .",
"start": "node dist/server.js",
"test": "jest"
},
"dependencies": {
"@prisma/client": "^3.9.1",
"axios": "^0.21.1",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"go-glicko": "^1.1.0",
"ioredis": "^4.27.6",
"passport": "^0.4.1",
"passport-oauth2": "^1.6.0"
},
"engines": {
"node": ">=12.2.0"
}
}