-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.99 KB
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
{
"name": "backend-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc",
"build-prod": "tsc && npm run pm2:init",
"pm2:init": "pm2 flush && pm2 delete process.json && pm2 start process.json",
"prisma:pull": "npx prisma db pull",
"prisma:gen": "npx prisma generate",
"prisma:format": "npx prisma format",
"prisma:mig": "npx prisma migrate dev --name",
"prisma:run-mig": "npx prisma migrate dev"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.2.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/swagger-ui-express": "^4.1.6",
"axios": "^1.2.0",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.3",
"express-validator": "^6.15.0",
"form-data": "^4.0.0",
"helmet": "^5.0.2",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^9.0.0",
"method-override": "^3.0.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20",
"pm2": "^5.3.0",
"serve-static": "^1.15.0",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/method-override": "0.0.32",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"morgan": "^1.10.0",
"prisma": "^3.12.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}