-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.39 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
{
"name": "node-ts-clean-boilerplate",
"version": "1.0.0",
"description": "server-side boilerplate for nodejs + typescript with clean architecture",
"repository": "https://github.com/jjteoh-pingspace/node-ts-clean-boilerplate",
"author": "The ARK",
"license": "MIT",
"private": true,
"keywords": [
"nodejs",
"typescript",
"ts",
"clean architecture"
],
"engines": {
"node": "^12.18.3 || >=14.0.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"main": "src/app.ts",
"scripts": {
"build": "gulp",
"debug": "nodemon --config nodemon.json --inspect-brk src/app.ts",
"start:dev": "cross-env NODE_ENV=development nodemon",
"start:prod": "cross-env NODE_ENV=production gulp && cross-env NODE_ENV=production node ./dist/app.js",
"lint": "gulp lint --verbose --fix",
"lint:eslint": "eslint ./src/**/*.{ts,js} --quiet --fix",
"test": "jest",
"coverage": "./node_modules/.bin/jest --coverage"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@types/node": "^16.4.12",
"body-parser": "^1.19.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"config": "^3.3.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.3.2",
"figlet": "^1.5.0",
"helmet": "^4.6.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"typedi": "^0.10.0",
"typescript": "^4.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/chalk": "^2.2.0",
"@types/config": "^0.0.39",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/eslint": "^7.28.0",
"@types/express": "^4.17.13",
"@types/figlet": "^1.5.4",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.24",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"del": "^6.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-nodemon": "^2.5.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0"
}
}