forked from NativeScript-Use/NativeScript-Use
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.83 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
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "husky install && npx ts-patch install && patch-package",
"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",
"ts-vue": "cd packages/vue && npx tsc --watch",
"build:all": "nx run-many --target=build.all --all",
"demo:vue:android": "npx nx run demo-vue:android",
"demo:vue:ios": "npx nx run demo-vue:ios",
"docs:dev": "vitepress dev packages/vue",
"docs:build": "vitepress build packages/vue",
"docs:preview": "vitepress preview packages/vue"
},
"workspaces": [
"/packages/*",
"/apps/*"
],
"private": true,
"devDependencies": {
"@nativescript-use/vue": "^0.0.5",
"@nativescript/core": "~8.5.0",
"@nativescript/plugin-tools": "5.1.0",
"@nativescript/tailwind": "^2.0.1",
"@nativescript/types": "~8.5.0",
"@nativescript/webpack": "^5.0.15",
"autoprefixer": "^10.4.14",
"husky": "^8.0.0",
"nativescript-vue": "3.0.0-beta.8",
"ng-packagr": "^15.0.0",
"patch-package": "~6.4.0",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"typescript": "~4.8.0",
"vitepress": "^1.0.0-beta.2"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}