-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 2.04 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
{
"name": "@da-mkay/ng-builder-typescript",
"version": "19.0.1",
"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": "copyfiles --up 1 'src/**/*.json' ./dist",
"copy:schematic-files": "copyfiles --up 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.5.0 <5.7.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.8",
"@types/inquirer": "^7.0.0",
"@types/node": "^20.11.1",
"copyfiles": "^2.4.1",
"husky": "^5.0.9",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"typescript": ">=5.5.0 <5.7.0"
},
"dependencies": {
"@angular-devkit/architect": ">=0.1900.0 <0.2000.0",
"@angular-devkit/core": "^19.0.0",
"@angular-devkit/schematics": "^19.0.0",
"@schematics/angular": "^19.0.0",
"ansi-colors": "^4.1.1",
"chokidar": "^4.0.0",
"fs-extra": "^9.1.0",
"glob": "^10.4.5",
"inquirer": "^8.2.4",
"rxjs": "^7.4.0"
},
"builders": "./dist/builders/builders.json",
"schematics": "./dist/schematics/collection.json",
"ng-add": {
"save": "devDependencies"
}
}