-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.85 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
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node build/main.js",
"serve": "nodemon index.js",
"test": "jest --config ./jest.config.json --coverage",
"lint": "prettier --config .prettierrc.json --write src/**/*.ts",
"pretest": "tsc",
"posttest": "codecov -f coverage/*.json",
"dist": "sh ./scripts/dist.sh"
},
"dependencies": {
"@nestjs/common": "^4.5.9",
"@nestjs/core": "^4.5.10",
"@nestjs/microservices": "^4.5.8",
"@nestjs/testing": "^4.6.6",
"@nestjs/typeorm": "^2.0.0",
"@nestjs/websockets": "^4.5.8",
"aws-sdk": "^2.243.1",
"body-parser": "^1.18.3",
"class-transformer": "^0.1.9",
"class-validator": "^0.8.1",
"express": "^4.16.3",
"fs": "0.0.1-security",
"htmlencode": "^0.0.4",
"mailcomposer": "^4.0.2",
"multer": "^1.3.0",
"mysql": "2.15.0",
"optional": "^0.1.4",
"recaptcha-test-keys": "^1.0.0",
"recaptcha-verify": "^0.1.1",
"redis": "^2.7.1",
"reflect-metadata": "0.1.10",
"rxjs": "^5.5.6",
"typedi": "^0.8.0",
"typeorm": "^0.1.12"
},
"devDependencies": {
"@types/jest": "^22.1.3",
"@types/node": "^9.3.0",
"codecov": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^5.0.0",
"es6-promise": "^4.2.5",
"jest": "^22.4.2",
"nodemon": "^1.17.1",
"ts-jest": "^22.4.0",
"ts-node": "^6.1.1",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}