-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
107 lines (107 loc) · 2.86 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "clean-architecture-typescript",
"version": "1.0.0",
"description": "Uncle Bob's clean architecture implementation in Typescript, with Express as Web Detail",
"main": "dist/index.js",
"scripts": {
"assets:config": "sh scripts/copy_config.sh",
"assets:views": "sh scripts/copy_views.sh",
"clean": "rimraf dist",
"test": "jest",
"coverage": "jest --coverage",
"jscpd": "jscpd . --ignore \"package.json,tsconfig.json,dist,**/node_modules,**/coverage\"",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint:fix": "npm run tslint -- --fix",
"install:dev": "npm i",
"build:dev": "tsc --watch --preserveWatchOutput",
"start:dev": "nodemon dist/index.js --node-env development",
"install:prod": "npm i --production",
"build:prod": "tsc --build tsconfig.prod.json",
"start:prod": "node dist/index.js --node-env production",
"dev": "concurrently -k -n \"Build,Start\" -p \"[{name}]\" -c \"blue,green\" \"npm:build:dev\" \"npm:start:dev\"",
"start": "npm run build:prod && npm run start:prod --"
},
"keywords": [
"Clean Architecture",
"Clean",
"Architecture",
"Uncle Bob",
"Typescript",
"Node.js",
"Express",
"Server",
"Node",
"Clean-code",
"Craftsmanship",
"TDD",
"test",
"convict",
"jest"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/convict": "^4.2.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/mongoose": "^5.7.7",
"@types/morgan": "^1.9.0",
"@types/nunjucks": "^3.1.3",
"body-parser": "^1.19.0",
"convict": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.5",
"morgan": "^1.10.0",
"nunjucks": "^3.2.1",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.1.4",
"@types/sinon": "^7.5.2",
"@types/supertest": "^2.0.8",
"concurrently": "^5.1.0",
"jest": "^25.1.0",
"jscpd": "^2.0.16",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-security": "^1.16.0",
"tslint-plugin-prettier": "^2.2.0",
"typescript": "^3.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"testPathIgnorePatterns": [
"node_modules"
],
"coveragePathIgnorePatterns": [
"node_modules",
".spec.inc.ts$",
".spec.ts$"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"src",
"src/FrameworkAndDrivers/Web/express"
]
}
}