-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "node ./node_modules/husky/lib/installer/bin install",
"setup": "npx rimraf node_modules package-lock.json dist tmp && npm i && ts-patch install",
"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"
},
"private": true,
"devDependencies": {
"@angular/animations": "~10.1.0",
"@angular/common": "~10.1.0",
"@angular/compiler": "~10.1.0",
"@angular/compiler-cli": "~10.1.0",
"@angular/core": "~10.1.0",
"@angular/forms": "~10.1.0",
"@angular/platform-browser": "~10.1.0",
"@angular/platform-browser-dynamic": "~10.1.0",
"@angular/router": "~10.1.0",
"@nativescript/angular": "~10.1.0",
"@nativescript/core": "~7.0.0",
"@nativescript/ios": "7.1.1",
"@nativescript/plugin-tools": "~1.0.0",
"@nativescript/types": "~7.0.0",
"@nativescript/webpack": "~3.0.0",
"@ngtools/webpack": "~10.1.0",
"husky": "^4.3.0",
"nativescript-vue": "~2.8.0",
"nativescript-vue-template-compiler": "~2.8.0",
"ng-packagr": "~10.1.0",
"rxjs": "~6.6.0",
"typescript": "~4.0.0",
"zone.js": "0.11.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"nx format:write --files"
]
}
}