-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.79 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nearby-skilled-worker",
"version": "0.0.0",
"description": "TypeScript + Prisma + MySQL + Express API Server",
"author": "",
"license": "ISC",
"scripts": {
"start": "node ./dist/server.js --trace-warnings",
"dev": "nodemon",
"build": "npm i --save-dev @types/node && npm i && tsc",
"build:tsc": "tsc && tsc-alias",
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint --fix",
"prisma:init": "prisma init",
"prisma:migrate": "prisma migrate dev --preview-feature",
"prisma:generate": "prisma generate",
"prisma:pull": "prisma db pull",
"prisma:run": "prisma studio",
"deploy:prod": "npm run build && pm2 start ecosystem.config.js --only prod",
"deploy:dev": "pm2 start ecosystem.config.js --only dev"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"@types/stripe": "^8.0.417",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"envalid": "^7.3.1",
"express": "^4.19.2",
"helmet": "^5.1.1",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.14",
"semver": "^7.6.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"swc": "^1.0.11",
"typedi": "^0.10.0",
"typescript": "^4.9.5",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^4.7.1",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@swc/cli": "^0.1.65",
"@swc/core": "^1.4.11",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/jest": "^28.1.8",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.9",
"@types/node": "^17.0.45",
"@types/supertest": "^2.0.16",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lint-staged": "^13.3.0",
"node-config": "^0.0.2",
"node-gyp": "^9.4.1",
"nodemon": "^2.0.22",
"pm2": "^5.3.1",
"prettier": "^2.8.8",
"prisma": "^5.11.0",
"supertest": "^6.3.4",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
}
}