-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "nestjs-playground",
"version": "0.0.1",
"author": "Olivier Troboe",
"repository": "https://github.com/otroboe/nestjs-playground",
"scripts": {
"docker": "docker-compose up -d",
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/src/main.js",
"fixtures:init": "ts-node bin/fixtures-init.ts",
"fixtures:clear": "ts-node bin/fixtures-clear.ts",
"test": "NODE_ENV=test jest --config=jest.json",
"test:watch": "NODE_ENV=test jest --watch --config=jest.json",
"test:coverage": "NODE_ENV=test jest --config=jest.json --coverage --coverageDirectory=coverage --no-cache",
"open:coverage": "opn ./coverage/lcov-report/index.html",
"e2e": "NODE_ENV=test jest --config=e2e/jest-e2e.json --forceExit --detectOpenHandles",
"e2e:watch": "NODE_ENV=test jest --watch --config=e2e/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^5.0.1",
"@nestjs/core": "^5.0.1",
"@nestjs/microservices": "^5.0.1",
"@nestjs/swagger": "^2.0.2",
"@nestjs/testing": "^5.0.1",
"@nestjs/typeorm": "^5.0.0",
"@nestjs/websockets": "^5.0.1",
"dotenv": "^5.0.1",
"faker": "^4.1.0",
"lodash": "^4.17.10",
"merge": "^1.2.1",
"moment": "^2.22.1",
"mysql": "^2.15.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.0",
"typeorm": "^0.2.6",
"typescript": "^2.8.3"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.109",
"@types/node": "^10.1.3",
"@types/supertest": "^2.0.4",
"jest": "^23.0.1",
"nodemon": "^1.17.5",
"opn-cli": "^3.1.0",
"supertest": "^3.1.0",
"ts-jest": "^22.4.6",
"ts-node": "^6.0.5",
"tslint": "^5.10.0"
}
}