forked from CodelyTV/typescript-ddd-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "typescript-ddd-skeleton",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=10.15.0",
"npm": ">=6.7.0"
},
"scripts": {
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"start": "NODE_ENV=production node dist/src/apps/mooc/server",
"build": "npm run build:clean && npm run build:tsc && npm run build:di",
"build:tsc": "tsc -p tsconfig.prod.json",
"build:di": "copy 'src/**/*.yaml' dist/src",
"build:clean": "rm -r dist; exit 0"
},
"dependencies": {
"@types/compression": "^1.0.1",
"@types/convict": "^4.2.1",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.17.1",
"@types/helmet": "0.0.44",
"@types/node": "~11.13.0",
"@types/uuid": "^3.4.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"convict": "^5.1.0",
"copy": "^0.3.2",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"helmet": "^3.21.1",
"http-status": "^1.3.2",
"mandrill-api": "^1.0.45",
"node-dependency-injection": "^2.3.5",
"ts-node": "^8.3.0",
"typescript": "^3.4.5",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.31",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/supertest": "^2.0.8",
"faker": "^4.1.0",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "8.2.1",
"prettier": "^1.16.4",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "~1.18.0",
"tslint-eslint-rules": "^5.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tests}/**/*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
}
}