-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "nestjs-module-template",
"version": "0.0.0",
"description": "",
"main": "dist/module-template.js",
"module": "dist/module-template.esm.js",
"types": "dist/module-template.d.ts",
"files": ["dist"],
"engines": {
"node": ">=12.0"
},
"scripts": {
"test": "jest --coverage",
"build": "rollup -c --environment BUILD:production"
},
"keywords": ["nestjs"],
"author": "Rahul Kadyan <[email protected]> (https://znck.me)",
"license": "MIT",
"dependencies": {
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@nestjs/platform-express": "^7.4.4",
"@nestjs/testing": "^7.4.4",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "^14.11.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.5.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-typescript-paths": "^1.2.2",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
}
}