-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "express-typescript-boilerplate",
"version": "1.0.0",
"description": "A scalable boilerplate for express.js and typescript with prisma config",
"main": "index.ts",
"scripts": {
"build": "npx prisma generate && tsc",
"start": "nodemon ./dist/index.js",
"dev": "npx prisma generate && nodemon --exec ts-node -- ./src/index.ts",
"prod": "npm run build && npm run start",
"clean": "rm -rf node_modules coverage dist .nyc_output",
"lint": "tslint -t stylish --project \"tsconfig.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabianferno/express-typescript-boilerplate.git"
},
"author": "Fabian Ferno",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabianferno/express-typescript-boilerplate/issues"
},
"homepage": "https://github.com/fabianferno/express-typescript-boilerplate#readme",
"dependencies": {
"@prisma/client": "3.8.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"helmet": "^4.6.0",
"http-status": "^1.2.0",
"jwks-rsa": "^2.0.5",
"minimist": "1.2.5",
"morgan": "^1.10.0",
"nocache": "^3.0.1",
"web3.storage": "3.5.7"
},
"devDependencies": {
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/node": "^10.9.4",
"morgan": "^1.9.1",
"nodemon": "2.0.15",
"prisma": "3.8.1",
"ts-node": "^10.4.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.5.4"
},
"nodemonConfig": {
"ext": "js,json,ejs,jpg,png,gif,svg,css,html,ts,env",
"watch": [
"src",
"dist"
]
},
"optionalDependencies": {
"fsevents": "2.3.2"
}
}