-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "typescript-postgresql-prisma-solid-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for typescript, postgresql and prisma. This boilerplate follows clean architecture with SOLID principles",
"main": "index.js",
"author": "tuancnttbk93@gmail.com",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --exit-child src/index.ts",
"lint": "eslint . --ext .ts",
"lint:auto-fix": "eslint . --ext .ts --quiet --fix",
"build:ts": "tsc",
"build:clean": "rimraf ./dist",
"build": "npm run build:clean && npm run build:ts",
"start": "node dist/index.js"
},
"engines": {
"node": "18.18.0"
},
"dependencies": {
"@prisma/client": "^5.4.1",
"awilix": "6.0.0",
"bcryptjs": "2.4.3",
"body-parser": "^1.20.2",
"cors": "2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "8.5.6",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.5.0",
"prisma": "^5.4.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}