forked from kevinaskin/apijson-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "apijson-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run start:watch",
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/main.js",
"test": "jest --config=jest.json",
"test:watch": "jest --watch --config=jest.json",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage"
},
"license": "ISC",
"dependencies": {
"@nestjs/common": "^6.0.1",
"@nestjs/core": "^6.0.1",
"@nestjs/microservices": "^6.0.1",
"@nestjs/platform-express": "^6.0.1",
"@nestjs/swagger": "^3.0.1",
"@nestjs/testing": "^6.0.1",
"@nestjs/typeorm": "^6.0.0",
"@nestjs/websockets": "^6.0.1",
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"crypto": "^1.0.1",
"crypto-js": "^3.1.9-1",
"express": "^4.17.1",
"lodash": "^4.17.15",
"mysql": "^2.15.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.4.0",
"slug": "^1.0.0",
"typeorm": "^0.2.15",
"typescript": "^3.3.1"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.14.16",
"atob": ">=2.1.0",
"deep-extend": ">=0.5.1",
"extend": ">=3.0.2",
"jest": "^24.5.0",
"nodemon": "^1.18.10",
"supertest": "^3.0.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3"
}
}