-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "@tsed/tsed-nodejs-example",
"version": "1.0.0",
"description": "Example.",
"main": "src/index.js",
"scripts": {
"clean": "exit 0",
"build": "yarn tsc",
"postbuild": "copyfiles -f src/views/*.ejs ./dist/views",
"test": "yarn clean && yarn jest && yarn test:lint",
"test:lint": "tslint --project tsconfig.json",
"test:lint:fix": "tslint --project tsconfig.json --fix",
"tsc": "tsc --project tsconfig.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "nodemon --watch \"src/**/*.ts\" --ignore \"node_modules/**/*\" --exec ts-node src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"deploy": "exit 0"
},
"author": "grenhaz",
"license": "MIT",
"dependencies": {
"@tsed/common": "^5.65.1",
"@tsed/core": "^5.65.1",
"@tsed/di": "^5.65.1",
"@tsed/exceptions": "^5.65.1",
"@tsed/mongoose": "^5.65.1",
"@tsed/platform-express": "^5.65.1",
"@tsed/swagger": "^5.60.4",
"@tsed/typeorm": "^5.65.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"consolidate": "^0.15.1",
"cookie-parser": "^1.4.5",
"copyfiles": "^2.3.0",
"cross-env": "7.0.2",
"ejs": "^3.1.5",
"express": "^4.17.1",
"method-override": "^3.0.0",
"sqlite3": "^5.0.0",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/chai-as-promised": "7.1.3",
"@types/cors": "2.8.6",
"@types/express": "^4.17.8",
"@types/http-proxy": "1.17.2",
"@types/jest": "^26.0.13",
"@types/mocha": "8.0.1",
"@types/node": "14.0.27",
"@types/request-promise": "4.1.45",
"@types/sinon": "9.0.4",
"@types/sinon-chai": "3.2.4",
"@types/supertest": "^2.0.10",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"concurrently": "5.2.0",
"jest": "^26.4.2",
"mocha": "8.1.1",
"nodemon": "^1.19.4",
"nyc": "15.1.0",
"rimraf": "3.0.0",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^8.10.2",
"tslint": "6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.9.7"
}
}