-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"name": "rest-scaffold",
"version": "1.0.0",
"description": "",
"license": "UNLICENSED",
"scripts": {
"build": "yarn tsc && tsc-alias -p tsconfig.build.json",
"tsc": "tsc -p tsconfig.build.json",
"tsc:w": "yarn tsc -w",
"dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register -r dotenv-flow/config src/index.ts",
"start": "cross-env NODE_ENV=production node -r dotenv-flow/config dist/index.js",
"test": "yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "yarn test:unit",
"test:lint": "eslint src --ext .ts",
"test:lint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@browser-bunyan/console-formatted-stream": "^1.6.2",
"@tsed/ajv": "6.45.0",
"@tsed/common": "6.45.0",
"@tsed/core": "6.45.0",
"@tsed/di": "6.45.0",
"@tsed/exceptions": "6.45.0",
"@tsed/json-mapper": "6.45.0",
"@tsed/logger": "^5.13.2",
"@tsed/platform-express": "6.45.0",
"@tsed/schema": "6.45.0",
"@tsed/swagger": "6.45.0",
"ajv": "8.1.0",
"body-parser": "1.19.0",
"browser-bunyan": "^1.6.3",
"bunyan": "^1.8.15",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cross-env": "7.0.2",
"dotenv-flow": "^3.2.0",
"express": "4.17.1",
"express-session": "^1.17.1",
"method-override": "3.0.0",
"universal-bunyan": "^0.9.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsed/cli": "3.0.2",
"@tsed/cli-plugin-eslint": "3.0.2",
"@tsed/cli-plugin-jest": "3.0.2",
"@tsed/cli-plugin-mongoose": "3.0.2",
"@tsed/cli-plugin-passport": "3.0.2",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.8",
"@types/express": "4.17.9",
"@types/express-session": "^1.17.3",
"@types/jest": "26.0.15",
"@types/method-override": "0.0.31",
"@types/node": "14.14.9",
"@types/supertest": "2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.22.0",
"eslint-config-weseek": "^1.0.8",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"jest": "26.6.3",
"supertest": "6.0.1",
"ts-jest": "26.4.4",
"ts-node": "9.0.0",
"ts-node-dev": "^1.0.0",
"tsc-alias": "^1.2.9",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2"
}
}