-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "express-boilerplate",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"lint": "eslint",
"test": "ts-jest",
"build": "tsc && tsc-alias",
"start": "node dist/index.js"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"bcryptjs": "^2.4.3",
"connect-redis": "^6.1.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"redis": "^4.6.4",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.20",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.6",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.35",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"envalid": "^7.3.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"http-status": "^1.6.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"prisma": "^4.10.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"prisma": {
"schema": "src/prisma/schema.prisma",
"seed": "src/prisma/seed.ts"
}
}