-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.53 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
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
{
"name": "bulb-project-api",
"version": "0.6.0",
"description": "API Service for Bulb Project",
"author": "uStudio Front-End Department",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nest start --watch",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest",
"test:cov": "jest --coverage"
},
"dependencies": {
"@fast-csv/parse": "^4.3.1",
"@nestjs/cli": "^7.5.1",
"@nestjs/common": "^7.4.2",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.4.2",
"@nestjs/platform-fastify": "^7.4.2",
"@nestjs/schedule": "^0.4.0",
"@nestjs/swagger": "^4.6.0",
"@nestjs/typeorm": "^7.1.1",
"@types/atob": "^2.1.2",
"@types/cron": "^1.7.2",
"@types/jest": "26.0.10",
"@types/mathjs": "^6.0.5",
"@types/node": "^14.6.0",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.3.0",
"atob": "^2.1.2",
"axios": "^0.20.0",
"buid": "^0.3.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cron": "^1.8.2",
"csv-string": "^4.0.1",
"dayjs": "^1.8.34",
"docx": "^5.3.0",
"fastify": "^3.3.0",
"fastify-swagger": "^3.3.0",
"mathjs": "^7.2.0",
"mongodb": "^3.6.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.2",
"ts4ocds": "^1.0.0-rc.1",
"typeorm": "^0.2.25",
"typescript": "^4.0.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"@nestjs/schematics": "^7.1.1",
"@nestjs/testing": "^7.4.2",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-es": "^3.19.67",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^21.0.0",
"husky": ">=4",
"jest": "26.4.2",
"lint-staged": ">=10.2.13",
"prettier": "^2.1.0",
"supertest": "^4.0.2",
"ts-jest": "26.2.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0"
},
"engineStrict": true,
"engines": {
"node": ">=12.16.0 <=14.15.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.ts": [
"yarn lint",
"yarn format"
]
}
}