-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "ts-node-user-api",
"version": "1.0.0",
"description": "A typescript express user api sample",
"scripts": {
"build-ts": "tsc",
"nodemon": "nodemon | bunyan -l debug",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"migrate": "migrate-mongo --file ./migrate.config.js",
"start": "node ./dist/server.js | bunyan -l warn",
"test": "mocha -r ts-node/register 'test/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tommarien/ts-node-user-api.git"
},
"author": "Tom Marien",
"license": "ISC",
"bugs": {
"url": "https://github.com/tommarien/ts-node-user-api/issues"
},
"homepage": "https://github.com/tommarien/ts-node-user-api#readme",
"devDependencies": {
"@types/boom": "^7.1.1",
"@types/bunyan": "^1.8.4",
"@types/chai": "^4.1.2",
"@types/express": "^4.11.1",
"@types/joi": "^13.0.5",
"@types/mocha": "^2.2.48",
"@types/mongoose": "^5.0.2",
"@types/mongoose-paginate": "^5.0.6",
"@types/node": "^8.9.4",
"@types/supertest": "^2.0.4",
"@types/yamljs": "^0.2.30",
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"mocha": "^5.0.1",
"mocha-junit-reporter": "^1.17.0",
"nodemon": "^1.14.12",
"supertest": "^3.0.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.1"
},
"dependencies": {
"boom": "^7.1.1",
"bunyan": "^1.8.12",
"express": "^4.16.2",
"express-request-id": "^1.4.0",
"joi": "^13.1.2",
"migrate-mongo": "^2.2.1",
"mongoose": "^5.0.6",
"mongoose-paginate": "^5.0.3",
"object-mapper": "^5.0.0",
"swagger-ui-express": "^2.0.15",
"yamljs": "^0.3.0"
}
}