-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.05 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": "@da-mkay/ng-builder-typescript",
"version": "20.0.0",
"description": "A set of builders and schematics for the Angular CLI to build Node.js apps using the typescript compiler tsc (no webpack or any other bundler used).",
"repository": {
"type": "git",
"url": "https://github.com/da-mkay/ng-builder-typescript.git"
},
"homepage": "https://github.com/da-mkay/ng-builder-typescript",
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && npm run copy:jsons && npm run copy:schematic-files",
"clean": "rimraf dist",
"copy:jsons": "node copyfiles.js 1 'src/**/*.json' ./dist",
"copy:schematic-files": "node copyfiles.js 2 'src/schematics/**/files/**' ./dist/schematics"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.ts'"
}
},
"keywords": [
"angular",
"ng",
"tsc",
"typescript",
"builder",
"watch",
"node",
"node.js"
],
"author": "da-mkay (https://github.com/da-mkay)",
"license": "MIT",
"peerDependencies": {
"typescript": ">=5.8.0 <5.9.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.8",
"@types/inquirer": "^7.0.0",
"@types/node": "^20.11.1",
"husky": "^5.0.9",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^6.0.1",
"typescript": ">=5.8.0 <5.9.0"
},
"dependencies": {
"@angular-devkit/architect": ">=0.2000.0 <0.2100.0",
"@angular-devkit/core": "^20.0.0",
"@angular-devkit/schematics": "^20.0.0",
"@schematics/angular": "^20.0.0",
"ansi-colors": "^4.1.1",
"chokidar": "^4.0.0",
"fs-extra": "^11.3.0",
"glob": "^10.4.5",
"inquirer": "^12.7.0",
"minimatch": "^9.0.5",
"rxjs": "^7.4.0"
},
"builders": "./dist/builders/builders.json",
"schematics": "./dist/schematics/collection.json",
"ng-add": {
"save": "devDependencies"
}
}