-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
{
"name": "express-api",
"version": "1.0.0",
"description": "🚀 Express template for developing a REST API with Node.js, Express, Typescript, Prettier, Husky, Prisma, etc.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --cls --exit-child src/index.ts",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"migrate": "prisma migrate dev",
"prepare": "husky install"
},
"lint-staged": {
"*.@(ts|js)": [
"prettier --ignore-unknown --write"
]
},
"keywords": [
"node",
"typescript",
"eslint",
"husky",
"prettier",
"docker"
],
"author": "Johnny Squardo",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.10.1",
"@types/bcrypt": "^5.0.0",
"@types/connect-redis": "^0.0.20",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/morgan": "^1.9.4",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"colors": "^1.4.0",
"connect-redis": "^6.1.3",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"env-var": "^7.3.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"http-status-codes": "^2.2.0",
"ioredis": "^5.3.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"redis": "^4.6.4",
"reflect-metadata": "^0.1.13",
"typescript": "^4.9.5",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express-list-endpoints": "^6.0.0",
"@types/helmet": "^4.0.0",
"@types/module-alias": "^2.0.1",
"@types/node": "^18.14.1",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"prisma": "^4.10.1",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2"
}
}