-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "@tseisel/nestjs-schematics",
"version": "0.4.0",
"description": "Generates a better NestJS project template.",
"author": "Thibault Seisel",
"license": "MIT",
"keywords": [
"nestjs",
"schematics"
],
"files": [
"src/**/*",
"!src/**/*.ts",
"src/**/*.d.ts",
"!src/**/*.spec.*",
"src/**/files/**"
],
"publishConfig": {
"access": "public"
},
"schematics": "./src/collection.json",
"scripts": {
"build": "tsc -b tsconfig.json",
"clean": "tsc -b tsconfig.json --clean",
"test": "npm run build && jasmine src/**/*.spec.js",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "husky"
},
"dependencies": {
"@angular-devkit/core": "^18.1.0",
"@angular-devkit/schematics": "^18.1.0"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "^18.1.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.19.0",
"husky": "^9.0.11",
"jasmine": "^5.1.0",
"lint-staged": "^15.2.0",
"prettier": "^3.3.0",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "~5.5.0"
},
"engines": {
"node": ">=18.19"
}
}