-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.76 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": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "husky install && npx ts-patch install",
"setup": "rm -rf **/node_modules package-lock.json dist tmp && ns package-manager set npm && npm install --legacy-peer-deps",
"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"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "~15.1.4",
"@angular/animations": "^15.1.3",
"@angular/common": "^15.1.3",
"@angular/compiler": "^15.1.3",
"@angular/compiler-cli": "^15.1.3",
"@angular/core": "^15.1.3",
"@angular/forms": "^15.1.3",
"@angular/platform-browser": "^15.1.3",
"@angular/platform-browser-dynamic": "^15.1.3",
"@angular/router": "^15.1.3",
"@nativescript/angular": "^15.0.1",
"@nativescript/core": "^8.4.7",
"@nativescript/plugin-tools": "5.3.0",
"@nativescript/types": "^8.4.0",
"@nativescript/webpack": "~5.0.18",
"@ngtools/webpack": "^15.1.4",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"nativescript-vue": "~2.9.3",
"nativescript-vue-template-compiler": "~2.9.3",
"ng-packagr": "^15.1.1",
"postcss-import": "^15.1.0",
"prettier": "^2.8.3",
"rxjs": "~7.8.0",
"typescript": "~4.9.5",
"zone.js": "~0.12.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}