-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "@pauldekoning/rest-api-boilerplate",
"version": "1.0.4",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build && tsc",
"start": "npm run build && node dist/index",
"prettier": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PauldeKoning/rest-api-boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PauldeKoning/rest-api-boilerplate/issues"
},
"homepage": "https://github.com/PauldeKoning/rest-api-boilerplate#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"jest": "^29.3.1",
"prettier": "2.8.1",
"typescript": "^4.8.4"
},
"dependencies": {
"express": "^4.18.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.2.0",
"tsyringe": "^4.7.0"
},
"files": [
"dist/model/endpoint.response.model.*",
"dist/router/http.router.*",
"dist/router/http.methods.enum.*",
"dist/rest.server.*",
"dist/util/**.*",
"dist/util/error/**.*"
]
}