forked from Saluki/nestjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.84 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
{
"name": "nest-template",
"version": "0.1.0",
"description": "NestJS API project template crafted for Docker environments",
"author": "Saluki",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"clean": "rimraf ./dist",
"start": "node dist/server.js",
"dev": "env-cmd -f .env nodemon",
"build": "npm run clean && tsc",
"test": "env-cmd -f .env jest --config=jest.json",
"lint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
"migration:create": "env-cmd -f .env ts-node ./node_modules/.bin/typeorm migration:create -n",
"migration:run": "env-cmd -f .env ts-node ./node_modules/.bin/typeorm migration:run",
"migration:revert": "env-cmd -f .env ts-node ./node_modules/.bin/typeorm migration:revert"
},
"dependencies": {
"joi": "^17.5.0",
"@nestjs/common": "^8.2.3",
"@nestjs/core": "^8.2.3",
"@nestjs/platform-express": "^8.2.3",
"@nestjs/swagger": "^5.1.5",
"@nestjs/testing": "^8.2.3",
"@nestjs/typeorm": "^8.0.2",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"swagger-ui-express": "^4.2.0",
"typeorm": "^0.2.41",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash": "^4.14.178",
"@types/node": "^16.0.0",
"@types/supertest": "^2.0.11",
"env-cmd": "^10.1.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}