-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.19 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.19 KB
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
{
"name": "ns-vue-vite-demo",
"main": "src/app.ts",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:ios": "concurrently -k -n vite,ns 'npm run dev:server:ios' 'wait-on tcp:5173 && npm run ios'",
"dev:android": "concurrently -k -n vite,ns 'npm run dev:server:android' 'wait-on tcp:5173 && npm run android'",
"dev:server:ios": "vite serve -- --env.ios --env.hmr",
"dev:server:android": "vite serve -- --env.android --env.hmr",
"ios": "ns debug ios",
"android": "ns debug android",
"postinstall": "patch-package"
},
"dependencies": {
"@nativescript/core": "~9.0.1",
"@triniwiz/nativescript-image-cache-it": "^7.5.0",
"@valor/nativescript-websockets": "^2.0.2",
"nativescript-inappbrowser": "^3.2.0",
"nativescript-vue": "3.0.2"
},
"devDependencies": {
"@nativescript/android": "~9.0.0",
"@nativescript/ios": "~9.0.0",
"@nativescript/tailwind": "^2.1.0",
"@nativescript/types": "~9.0.0",
"@nativescript/vite": "^1.0.2",
"@types/node": "^22.14.0",
"concurrently": "^9.0.1",
"nativescript": "~9.0.1",
"patch-package": "^8.0.1",
"tailwindcss": "~3.4.0",
"typescript": "~5.9.0",
"wait-on": "^7.2.0"
}
}