-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
52 lines (52 loc) · 1.79 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
{
"name": "plugins",
"version": "3.3.2",
"license": "MIT",
"scripts": {
"postinstall": "husky && npx ts-patch install",
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && yarn config set ignore-engines true && ns package-manager set npm && yarn",
"start": "nps",
"add": "nx g @nativescript/plugin-tools:add-package",
"add-angular": "nx g @nativescript/plugin-tools:add-angular",
"config": "nx g @nativescript/plugin-tools:config",
"publish-packages": "nx g @nativescript/plugin-tools:publish",
"sync-packages-with-demos": "nx g @nativescript/plugin-tools:sync-packages-with-demos",
"remove-package": "nx g @nativescript/plugin-tools:remove-package",
"add-demo": "nx g @nativescript/plugin-tools:add-demo",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.0",
"@angular/animations": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"@nativescript/angular": "^18.0.0",
"@nativescript/core": "~8.8.0",
"@nativescript/plugin-tools": "5.4.1",
"@nativescript/types": "~8.8.0",
"@nativescript/webpack": "~5.0.5",
"@ngtools/webpack": "^18.0.0",
"conventional-changelog-cli": "^2.2.2",
"husky": "~9.0.0",
"nativescript-vue": "~2.9.0",
"nativescript-vue-template-compiler": "~2.9.0",
"ng-packagr": "^18.0.0",
"rxjs": "~7.8.0",
"stacktrace-js": "~2.0.2",
"typescript": "~5.5.0",
"vue": "~2.6.12",
"zone.js": "~0.14.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}