-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.22 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "typescript-ddd-skeleton",
"version": "1.0.0",
"description": "Node Typescript DDD skeleton project",
"repository": {
"url": "https://github.com/alejandrortiz/typescript-ddd-skeleton"
},
"author": "Alejandro Ortiz",
"license": "ISC",
"scripts": {
"dev:financial": "ENV=dev ts-node-dev --ignore-watch node_modules ./src/app/public/index.ts",
"test": "npm run test:unit && npm run test:features",
"test:unit": "ENV=test jest",
"test:features": "npm run test:financial:features",
"test:financial:features": "ENV=test cucumber-js -p financial",
"lint": "tslint src/**/*.ts{,x}",
"start:financial": "ENV=production node dist/src/app/public/index",
"build": "npm run build:clean && npm run build:tsc && npm run build:di",
"build:tsc": "tsc -p tsconfig.prod.json",
"build:di": "copy 'src/**/*.{json,yaml,html,png}' dist/src",
"build:clean": "rm -r dist; exit 0"
},
"dependencies": {
"@types/bluebird": "^3.5.33",
"@types/bson": "^4.0.3",
"@types/compression": "^1.7.0",
"@types/convict": "^6.0.1",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/mongodb": "^3.6.11",
"@types/node": "^14.14.37",
"@types/uuid": "^8.3.0",
"@types/uuid-validate": "0.0.1",
"body-parser": "^1.19.0",
"bodybuilder": "^2.4.0",
"bson": "^4.2.3",
"compression": "^1.7.4",
"convict": "^6.0.1",
"copy": "^0.3.2",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"glob": "^7.1.6",
"helmet": "^4.4.1",
"http-status": "^1.5.0",
"mongodb": "^3.6.5",
"node-dependency-injection": "^2.6.11",
"sequelize": "^6.6.2",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"uuid": "^8.3.2",
"uuid-validate": "0.0.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@cucumber/cucumber": "^7.1.0",
"@types/connect-flash": "0.0.36",
"@types/cucumber": "^7.0.0",
"@types/faker": "^5.5.0",
"@types/jest": "^26.0.22",
"@types/supertest": "^2.0.11",
"cypress": "^6.8.0",
"faker": "^5.5.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-lint": "^4.5.1",
"ts-node-dev": "^1.1.6",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslint-config-prettier": "^1.18.0",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tests}/**/*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
}
}