forked from nstudio/nativescript-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.13 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": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && 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",
"postinstall": "husky install && npx ts-patch install && patch-package",
"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": "^13.2.0",
"@angular/animations": "^13.2.0",
"@angular/common": "^13.2.0",
"@angular/compiler": "^13.2.0",
"@angular/compiler-cli": "^13.2.0",
"@angular/core": "^13.2.0",
"@angular/forms": "^13.2.0",
"@angular/platform-browser": "^13.2.0",
"@angular/platform-browser-dynamic": "^13.2.0",
"@angular/router": "^13.2.0",
"@nativescript/angular": "^13.0.0",
"@nativescript/core": "~8.2.0",
"@nativescript/plugin-tools": "3.0.2",
"@nativescript/types": "~8.2.0",
"@nativescript/webpack": "~5.0.5",
"@ngtools/webpack": "^13.2.0",
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.4",
"@react-navigation/core": "^5.15.3",
"@types/react": "16.9.34",
"husky": "^7.0.0",
"nativescript-dev-xcode": "^0.3.0",
"nativescript-permissions": "1.3.11",
"nativescript-vue": "~2.9.0",
"nativescript-vue-template-compiler": "~2.9.0",
"ng-packagr": "^13.2.0",
"patch-package": "~6.4.0",
"react": "~16.13.1",
"react-nativescript": "^3.0.0-beta.1",
"react-nativescript-navigation": "3.0.0-beta.2",
"react-refresh": "~0.8.3",
"rxjs": "~7.5.0",
"svelte": "~3.35.0",
"svelte-loader-hot": "~0.3.1",
"svelte-native-preprocessor": "^0.2.0",
"svelte-native": "~0.9.5",
"svelte-preprocess": "^4.7.0",
"typescript": "~4.5.5",
"vue": "~2.6.12",
"zone.js": "~0.11.5"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}