-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "tipjs-nodejs-course",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"type": "module",
"engines": {
"node": "18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsx src/server.ts",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"@prisma/client": "^5.5.2",
"agentkeepalive": "^4.5.0",
"axios": "^1.6.4",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.4",
"pino": "^8.15.6",
"prisma": "^5.5.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"pino-pretty": "^10.2.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}