-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.77 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
60
61
62
63
64
65
66
67
68
69
{
"name": "bq-r-api",
"version": "1.0.0",
"prisma": {
"seed": "ts-node -P tsconfig.json prisma/seed.ts"
},
"description": "bq-r backend level api",
"main": "build/api/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "tsc-watch --onSuccess 'npm run start'",
"start": "node --enable-source-maps build/api/index.js",
"build": "tsc",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarahkittyy/blockquest-remake.git"
},
"keywords": [
"platformer",
"game",
"api"
],
"author": "Sarah Ohlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/sarahkittyy/blockquest-remake/issues"
},
"homepage": "https://github.com/sarahkittyy/blockquest-remake#readme",
"dependencies": {
"@ngneat/falso": "^6.1.0",
"@prisma/client": "^5.7.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.7",
"@types/nodemailer": "^6.4.6",
"@types/uuid": "^9.0.0",
"@types/validator": "^13.7.9",
"bcrypt": "^5.1.0",
"class-validator": "^0.13.2",
"dayjs": "^1.11.6",
"express": "^4.18.2",
"flatted": "^3.2.7",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"nodemailer": "^6.8.0",
"pm2": "^5.2.2",
"prettier": "^2.7.1",
"prisma": "^5.7.0",
"socket.io": "^4.6.0",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"tslog": "^3.3.4",
"typescript": "^4.8.4",
"uuid": "^9.0.0",
"validator": "^13.7.0"
},
"_moduleAliases": {
"@controllers": "build/api/controllers/",
"@db": "build/api/db/",
"@util": "build/api/util/",
"@": "build/api/"
}
}