-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "nodejs-tsed-rest-mssql",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npm run tsc",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "tsnd --inspect --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": "npm run test:lint && npm run test:coverage",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "npm run test:unit",
"typeorm": "tsed typeorm"
},
"dependencies": {
"@tsed/ajv": "^6.68.0",
"@tsed/common": "^6.68.0",
"@tsed/core": "^6.68.0",
"@tsed/di": "^6.68.0",
"@tsed/exceptions": "^6.68.0",
"@tsed/json-mapper": "^6.68.0",
"@tsed/platform-express": "^6.68.0",
"@tsed/schema": "^6.68.0",
"@tsed/swagger": "^6.68.0",
"@tsed/typeorm": "^6.68.0",
"ajv": "^8.6.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"method-override": "^3.0.0",
"mssql": "^7.2.1",
"typeorm": "^0.2.37"
},
"devDependencies": {
"@tsed/cli-plugin-jest": "3.11.4",
"@tsed/cli-plugin-typeorm": "3.11.4",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/method-override": "^0.0.32",
"@types/multer": "^1.4.7",
"@types/node": "^16.9.1",
"@types/supertest": "^2.0.11",
"jest": "^27.2.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
},
"tsed": {
"packageManager": "npm",
"convention": "default"
}
}