-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
88 lines (88 loc) · 2.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "toundra-main-server",
"version": "0.0.1",
"description": "Nest Boilerplate",
"author": "Raphaël Morineau <[email protected]>",
"maintainers": [],
"license": "MIT",
"private": true,
"repository": "[email protected]:Sharlaan/NestJS-TypeORM-Boilerplate.git",
"scripts": {
"start": "cross-env NODE_ENV=development ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "cross-env NODE_ENV=production node dist/main.js",
"tscheck:w": "tsc -w",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"hmr": "node dist/server",
"webpack": "webpack --config webpack.config.js",
"deploy:local": "docker-compose --env-file .env.development up -d"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn format",
"yarn lint",
"git add"
]
},
"dependencies": {
"@nestjs/common": "^6.10.14",
"@nestjs/core": "^6.10.14",
"@nestjs/jwt": "^6.1.1",
"@nestjs/passport": "^6.1.1",
"@nestjs/typeorm": "^6.2.0",
"crypto": "^1.0.1",
"helmet": "^3.21.2",
"mongodb": "^3.4.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^7.17.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"typeorm": "^0.2.22"
},
"devDependencies": {
"@nestjs/swagger": "^4.1.10",
"@nestjs/testing": "^6.10.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/helmet": "^0.0.45",
"@types/jest": "^24.0.25",
"@types/joi": "^14.3.4",
"@types/node": "^13.1.6",
"@types/passport-jwt": "^3.0.3",
"@types/supertest": "^2.0.8",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"husky": "^4.0.7",
"jest": "^24.9.0",
"joi": "^14.3.1",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.1",
"tsconfig-paths": "^3.9.0",
"tslint": "5.20.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
}
}