-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.87 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
89
90
91
92
93
94
95
96
{
"name": "fruits-demo-be",
"version": "0.0.1",
"description": "",
"author": "Jan Strnadek <[email protected]>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"start:docker": "yarn run typeorm:run && yarn start:dev",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"test": "jest --config ./jest.config.js",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.js --runInBand",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/ormconfig.ts",
"typeorm:migrate": "yarn run typeorm migration:create -n",
"typeorm:run": "yarn run typeorm migration:run"
},
"dependencies": {
"@nestjs/common": "^6.11.8",
"@nestjs/core": "^6.11.8",
"@nestjs/platform-express": "^6.11.8",
"@nestjs/swagger": "^4.3.1",
"@nestjs/typeorm": "^6.3.3",
"@types/morgan": "^1.9.0",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.3.1",
"class-validator": "^0.11.0",
"dotenv": "^8.2.0",
"inquirer": "^7.0.5",
"js-yaml": "^3.13.1",
"morgan": "^1.9.1",
"nest-morgan": "^1.0.1",
"nestjs-session": "^1.0.0",
"nodemailer": "^6.4.3",
"pg": "^7.18.2",
"progress": "^2.0.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"swagger-ui-express": "^4.1.2",
"typeorm": "^0.2.24",
"typeorm-transactional-cls-hooked": "^0.1.12"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.11",
"@nestjs/cli": "^6.14.2",
"@nestjs/schematics": "^6.9.4",
"@nestjs/testing": "^6.11.8",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.2",
"@types/faker": "^4.1.10",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.1.3",
"@types/jsonwebtoken": "^8.3.8",
"@types/node": "^13.7.7",
"@types/nodemailer": "^6.4.0",
"@types/progress": "^2.0.3",
"@types/supertest": "^2.0.8",
"@emanprague/eslint-config": "1.0.0",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.1.1",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn run eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}