-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.12 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
65
66
{
"name": "@danils/project-builder",
"version": "1.3.4",
"description": "Project Builder allows to execute many schematics in an only execution with different levels of dependencies",
"main": "index.js",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"build:watch": "rollup -c --bundleConfigAsCjs --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"publish": "npm run build && cd dist && npm publish --access=public",
"publish:verdaccio": "npm run build && cd dist && npm publish --registry http://localhost:4873"
},
"author": "Hyperxq",
"repository": {
"type": "git",
"url": "https://github.com/Hyperxq/project-builder"
},
"keywords": [
"angular-devkit/schematics",
"Schematics"
],
"license": "GNU GENERAL PUBLIC LICENSE",
"schematics": "./collection.json",
"dependencies": {
"@angular-devkit/core": "^17.2.0",
"@angular-devkit/schematics": "^17.2.0",
"@angular-devkit/schematics-cli": "^17.2.0",
"@paralleldrive/cuid2": "^2.2.2",
"@schematics/angular": "^17.2.0",
"ajv": "8.6.2",
"ansi-colors": "4.1.3",
"inquirer": "8.2.6",
"node-emoji": "^2.1.0",
"ora": "5.4.1",
"typescript": "^5.3.3",
"winston": "^3.11.0",
"winston-console-format": "^1.0.8"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.3.0",
"@types/inquirer": "^9.0.6",
"@types/jasmine": "~4.3.0",
"@types/node": "^16.18.37",
"@types/node-emoji": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"cpr": "^3.0.1",
"eslint": "^8.43.0",
"glob": "^10.3.10",
"husky": "^8.0.3",
"jasmine": "^4.0.0",
"lint-staged": "^13.3.0",
"prettier": "2.8.8",
"rollup": "3.29.4",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"ts-node": "^10.9.1"
}
}