-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
102 lines (102 loc) · 3.18 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
{
"name": "ws-node-demo",
"version": "2.0.0",
"description": "An implmentation of tosa with Express, node 10.12.17.+, mongo, and JWT",
"author": "Will Streeter <[email protected]> (http://www.willstreeter.com)",
"license": "MIT",
"repository": {
"url": "https://github.com/WillStreeter/ws-node-demo"
},
"scripts": {
"check": "npm-check --skip-unused",
"preinstall": "npm i -g nodemon rimraf npm-run-all npm-check",
"start": "npm-run-all -s clean build start:simple",
"start:simple": "node ./dist/server.js",
"start:dev": "npm-run-all -s clean build -p watch:*",
"start:debug": "npm-run-all -s clean build -p watch:* debug",
"clean": "npm-run-all -p clean:*",
"clean:dist": "rimraf dist",
"clean:cov": "rimraf coverage",
"debug": "node-debug",
"build": "npm-run-all -s build:swagger",
"build:swagger": "npm run swagger-gen && npm run routes-gen && /usr/lib/node_modules/bin/tsc && npm run copy-swagger-ui",
"watch:tosa": "onchange './src/**/*.*' -d 3000 -- npm run swagger-gen && npm run routes-gen",
"watch:node": "nodemon --inspect --delay 2.5 ./dist/server.js ",
"watch:ts": "/usr/lib/node_modules/bin/tsc --watch",
"lint": "tslint ./src/**/*.ts",
"swagger-gen": "tsoa swagger",
"routes-gen": "tsoa routes",
"copy-swagger-ui": "ncp ./src/presentation-layer/documentation/swagger-ui ./dist/swagger-ui",
"tsoa": "tsoa"
},
"keywords": [
"typescript",
"swagger",
"docker",
"express"
],
"engines": {
"node": "~7.9.0"
},
"engineStrict": true,
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.18.3",
"class-validator": "0.9.1",
"cookie-parser": "1.4.3",
"config": "3.0.1",
"cors": "2.8.5",
"event-dispatch": "0.4.1",
"express": "4.16.4",
"express-ping": "1.4.0",
"express-winston": "3.0.1",
"method-override": "3.0.0",
"moment":"2.23.0",
"glob": "7.1.2",
"js-yaml": "3.11.0",
"jsonwebtoken": "8.4.0",
"mongodb": "3.1.9",
"mongoose": "5.4.2",
"reflect-metadata": "0.1.12",
"tsoa": "2.3.8",
"typedi": "0.8.0",
"winston": "3.1.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "1.16.8",
"@types/chai": "4.1.6",
"@types/config": "0.0.33",
"@types/cookie-parser": "1.4.0",
"@types/cors": "2.8.3",
"@types/express": "4.11.1",
"@types/js-yaml": "3.11.3",
"@types/jsonwebtoken": "8.3.0",
"@types/method-override": "0.0.30",
"@types/mocha": "5.2.5",
"@types/mongodb": "3.1.17",
"@types/mongoose": "5.3.6",
"@types/morgan": "1.7.32",
"@types/node": "10.12.17",
"@types/serve-static": "1.13.0",
"@types/supertest": "2.0.6",
"@types/winston": "2.3.9",
"chai": "4.1.2",
"codeclimate-test-reporter": "0.5.0",
"istanbul": "0.4.4",
"mocha": "5.1.1",
"ncp": "2.0.0",
"nodemon": "^1.18.9",
"npm-run-all": "4.1.4",
"onchange": "5.1.3",
"remap-istanbul": "^0.6.4",
"rimraf": "^2.5.2",
"source-map-support": "0.5.8",
"supertest": "3.2.0",
"swagger-jsdoc": "3.2.5",
"ts-helpers": "1.1.1",
"tslint": "5.11.0",
"typescript": "^2.8.3",
"typescript-formatter": "7.2.1"
}
}