-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 KB
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
{
"name": "velocity-api",
"version": "1.0.0",
"description": "API for the velocity app",
"scripts": {
"dev": "nodemon --legacy-watch",
"prestart:prod": "tsc",
"start": "node dist/server.js",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:futbotism/velocity-api.git"
},
"keywords": [],
"license": "Apache 2.0",
"dependencies": {
"@nestjs/common": "^4.5.9",
"@nestjs/core": "^4.5.10",
"@nestjs/microservices": "^4.5.8",
"@nestjs/swagger": "^1.1.4",
"@nestjs/testing": "^4.5.5",
"@nestjs/websockets": "^4.5.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"class-transformer": "^0.1.8",
"class-validator": "^0.7.2",
"cors": "^2.8.4",
"jsonwebtoken": "^8.2.0",
"npm": "^5.7.1",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"pg": "^7.3.0",
"redis": "^2.7.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^5.5.6",
"slug": "^0.9.1",
"typeorm": "^0.1.0",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/express": "^4.0.37",
"@types/jest": "^21.1.2",
"@types/node": "^8.0.28",
"@types/slug": "^0.9.0",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"ts-jest": "^21.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": ".*\\.spec.(ts|tsx|js)$"
}
}