-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.13 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
{
"name": "wrascal-ts",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "yarn run barrels && tsc --project tsconfig.compile.json",
"barrels": "barrelsby --config .barrelsby.json",
"start": "yarn run barrels && tsnd --inspect --exit-child --cls --ignore-watch node_modules --respawn --transpile-only -r tsconfig-paths/register src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"test": "yarn run test:lint && yarn run test:coverage",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "yarn run test:unit",
"typeorm": "typeorm-ts-node-commonjs",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "eslint '**/*.{ts,js}' --fix",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@tsed/ajv": "^7.13.3",
"@tsed/common": "^7.13.3",
"@tsed/core": "^7.13.3",
"@tsed/di": "^7.13.3",
"@tsed/engines": "^7.13.3",
"@tsed/exceptions": "^7.13.3",
"@tsed/json-mapper": "^7.13.3",
"@tsed/logger": "^6.3.3",
"@tsed/logger-file": "^6.3.3",
"@tsed/platform-cache": "^7.13.3",
"@tsed/platform-exceptions": "^7.13.3",
"@tsed/platform-express": "^7.13.3",
"@tsed/platform-log-middleware": "^7.13.3",
"@tsed/platform-middlewares": "^7.13.3",
"@tsed/platform-params": "^7.13.3",
"@tsed/platform-response-filter": "^7.13.3",
"@tsed/platform-views": "^7.13.3",
"@tsed/schema": "^7.13.3",
"@tsed/swagger": "^7.13.3",
"ajv": "^8.12.0",
"barrelsby": "^2.5.1",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"method-override": "^3.0.0",
"npx": "^10.2.2",
"pg": "^8.9.0",
"typeorm": "^0.3.11",
"yarn": "^1.22.19",
"zlib": "^1.0.5"
},
"devDependencies": {
"@tsed/cli-plugin-eslint": "^4.2.7",
"@tsed/cli-plugin-jest": "^4.2.7",
"@tsed/cli-plugin-typeorm": "^4.2.7",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/jest": "^29.4.0",
"@types/method-override": "^0.0.32",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"axios": "^1.2.6",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.4.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"tsed": {
"packageManager": "yarn",
"convention": "default",
"architecture": "default"
}
}