-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "Nestjs-Heroku-Ready",
"version": "1.0.0",
"description": "A boilerplate for Nest (heroku ready) API.",
"scripts": {
"start": "rimraf build && gulp",
"build": "rimraf build && gulp --prod",
"lint": "tslint src/server.ts 'src/api/**/*.ts'",
"test": "cross-env JEST_ENV=api jest \"src/api/.*\\.ts$\" --coverage --forceExit",
"deploy": "git push heroku master",
"postinstall": "yarn build",
"e2e": "cross-env JEST_ENV=e2e jest \"src/api/.*\\.ts$\" --forceExit",
"codecov": "codecov",
"firebase": "firebase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martin-trajanovski/nestjs-heroku-ready"
},
"keywords": [
"Nest",
"API"
],
"author": "Martin Trajanovski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martin-trajanovski/nestjs-heroku-ready/issues"
},
"homepage": "https://github.com/martin-trajanovski/nestjs-heroku-ready#readme",
"dependencies": {
"@nestjs/common": "5.1.0",
"@nestjs/core": "5.1.0",
"@nestjs/microservices": "5.1.0",
"@nestjs/websockets": "5.1.0",
"@nestjs/mongoose": "5.1.0",
"core-js": "2.5.7",
"hammerjs": "2.0.8",
"morgan": "1.9.0",
"reflect-metadata": "0.1.12",
"request": "2.87.0",
"rxjs": "6.2.1",
"zone.js": "0.8.26",
"mongoose": "^5.2.8"
},
"devDependencies": {
"@nestjs/testing": "5.1.0",
"@types/jest": "23.1.6",
"@types/node": "10.5.2",
"codecov": "3.0.4",
"cross-env": "5.2.0",
"gulp": "3.9.1",
"gulp-plumber": "1.2.0",
"gulp-rename": "1.3.0",
"gulp-replaces": "0.1.3",
"gulp-shell": "0.6.5",
"gulp-typescript": "5.0.0-alpha.3",
"gulp-util": "3.0.8",
"jest": "23.4.1",
"process-envify": "0.1.3",
"puppeteer": "1.6.0",
"raw-loader": "0.5.1",
"run-sequence": "2.2.1",
"supertest": "3.1.0",
"ts-jest": "23.0.0",
"ts-node": "7.0.0",
"tslint": "5.10.0",
"typescript": "2.7.2"
}
}