-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.57 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
70
71
72
73
74
75
{
"name": "vpad-backend",
"version": "0.0.1",
"license": "MIT",
"main": "./dist/src/main/server.prod.js",
"type": "commonjs",
"scripts": {
"build": "tsc && resolve-tspaths && prisma migrate deploy",
"start": "node dist/src/main/server.js",
"dev": "nodemon --exec tsx ./src/main/server.ts",
"test": "jest --no-cache --coverage --silent --forceExit --runInBand --detectOpenHandles",
"test-watch": "jest --no-cache --silent=false --runInBand --watch --no-coverage",
"migrate": "prisma migrate dev",
"lint": "eslint . --ext js,ts --fix",
"check": "tsc --noEmit && resolve-tspaths --noEmit",
"docker-build": "docker compose up server --no-deps --build --no-start"
},
"dependencies": {
"@prisma/client": "5.6.0",
"@types/backblaze-b2": "^1.5.6",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/ffmpeg": "^1.0.7",
"@types/multer": "^1.4.11",
"@types/typescript": "^2.0.0",
"aws-sdk": "^2.1502.0",
"axios": "^1.6.0",
"backblaze-b2": "^1.7.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"glob-parent": "^5.1.2",
"jsonwebtoken": "^9.0.0",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.9.0",
"pm2": "^5.3.0",
"prisma": "^5.6.0",
"resolve-tspaths": "^0.8.17",
"semver": "^7.5.2",
"sharp": "^0.33.2",
"stripe": "^14.7.0",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"tsx": "^4.5.0",
"typescript": "^5.3.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.10",
"@types/jsonwebtoken": "^9.0.1",
"@types/mime-types": "^2.1.4",
"@types/node": "^18.14.2",
"@types/stripe": "^8.0.417",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"nodemon": "^2.0.22",
"prettier": "^2.8.4",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"yarn-audit-fix": "^9.3.9"
}
}