-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.06 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": "ts-rest-api-template",
"version": "1.4.0",
"description": "boilerplate for REST API in NodeJS,Express projects",
"main": "dist/index.js",
"scripts": {
"start": "node index.js",
"start:local": "rimraf dist/* && ts-node copyAssets && tsc && node dist/index.js",
"build": "rimraf dist/* && tsc --build && ts-node copyAssets",
"clean": "rimraf dist/*",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"start:dev": "ts-node src/index.ts",
"copy-assets": "ts-node copyAssets",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "cz",
"swagger": "ts-node src/server/swagger.def.ts"
},
"keywords": [
"typescript",
"nodejs",
"rest"
],
"author": "tummalah",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/joi": "^17.2.3",
"@types/node": "^17.0.8",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"husky": "^7.0.4",
"joi": "^17.5.0",
"joi-to-swagger": "^6.0.1",
"lint-staged": "^12.2.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@okta/oidc-middleware": "^4.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"dotenv-safe": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-session": "^1.17.2",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.3.0",
"tsconfig-paths": "^3.12.0",
"tscpaths": "^0.0.9"
},
"files": [
"dist/**/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "14.x"
}
}