-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest --watchAll",
"start": "node index.js",
"watch": "tsc -w",
"serve": "nodemon -e ts --watch src --exec \"npm run build && npm run start\" "
},
"dependencies": {
"@nestjs/common": "^4.5.0",
"@nestjs/core": "^4.5.0",
"@nestjs/microservices": "^4.5.0",
"@nestjs/testing": "^4.5.0",
"@nestjs/websockets": "^4.5.0",
"cors": "^2.8.4",
"jsonwebtoken": "^8.1.1",
"lodash": "^4.17.5",
"mysql": "^2.15.0",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.4.3",
"sha1": "^1.1.1",
"sqlite3": "^3.1.13",
"typeorm": "^0.1.9"
},
"devDependencies": {
"@types/express": "^4.0.36",
"@types/node": "^8.0.19",
"jest": "^21.1.0",
"nodemon": "^1.13.3",
"supertest": "^3.0.0",
"ts-jest": "^21.0.1",
"ts-node": "^3.3.0",
"typescript": "^2.4.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec|e2e-spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}