forked from ascii-16/expressjs-typescript-prisma-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.71 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "expressjs-typescript-prisma-boilerplate",
"version": "1.0.0",
"description": "expressjs typescript boilerplate with prisma",
"main": "index.ts",
"scripts": {
"prepare": "is-ci || husky install",
"prebuild": "npm run clean:build",
"build": "npm run prisma:generate && tsc --build --verbose tsconfig.build.json && tsc-alias -p tsconfig.json",
"start": "FORCE_COLOR=2 node ./dist/index.js",
"dev": "npm run prisma:generate && NODE_ENV=development ts-node-dev --project tsconfig.dev.json -r tsconfig-paths/register --transpile-only --respawn --exit-child src/index.ts",
"prod": "npm run build && npm run start",
"clean": "rm -rf node_modules coverage dist .nyc_output",
"clean:build": "rm -rf dist",
"lint": "eslint --ignore-path .eslintignore ./ --ext .ts,.js",
"lint:fix": "eslint --ignore-path .eslintignore ./ --fix --ext .ts,.js",
"format": "prettier --ignore-path .prettierignore --write \"**/*.+(ts|js)\"",
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate dev --name init",
"prisma:seed": "npx prisma db seed",
"prisma:studio": "npx prisma studio",
"check:types": "tsc --noEmit",
"commit": "git-cz",
"test": "jest",
"test:e2e": "jest -c jest.config.e2e.ts",
"test:integration": "jest -c jest.config.integration.ts",
"test:unit": "jest -c jest.config.unit.ts"
},
"prisma": {
"seed": "ts-node-dev -r tsconfig-paths/register --transpile-only prisma/seed.ts"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "akhil chandran",
"engines": {
"node": ">=16.0.0"
},
"repository": "git@github.com:akhil-neoito/expressjs-typescript-prisma-boilerplate.git",
"keywords": [
"NodeJS",
"TypeScript",
"express",
"prisma",
"boilerplate"
],
"license": "MIT",
"dependencies": {
"@prisma/client": "^4.9.0",
"axios": "^1.2.2",
"body-parser": "^1.18.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-jwt": "^6.1.0",
"helmet": "^4.6.0",
"jwk-to-pem": "^2.0.5",
"jwks-rsa": "^2.0.5",
"morgan": "^1.10.0",
"nocache": "^3.0.1",
"nodemon": "^2.0.20",
"winston": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@faker-js/faker": "^7.6.0",
"@swc/core": "^1.3.31",
"@swc/helpers": "^0.4.14",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/jwk-to-pem": "^2.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^10.17.60",
"@types/superagent": "4.1.10",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"chalk": "4.1.2",
"commitizen": "^4.3.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^27.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^45.0.2",
"express-jsdoc-swagger": "^1.8.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.4.3",
"lint-staged": "^13.1.0",
"morgan": "^1.9.1",
"node-notifier": "^10.0.1",
"prettier": "^2.8.3",
"prisma": "^4.9.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.2",
"tsc-files": "^1.1.3",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"optionalDependencies": {
"fsevents": "2.3.2"
}
}