-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.59 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.59 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "patch-package && husky && npx ts-patch install && node tools/scripts/postinstall.js",
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && npm 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",
"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": "~21.0.0",
"@angular/animations": "~21.0.0",
"@angular/build": "^21.0.5",
"@angular/common": "~21.0.0",
"@angular/compiler": "~21.0.0",
"@angular/compiler-cli": "~21.0.0",
"@angular/core": "~21.0.0",
"@angular/forms": "~21.0.0",
"@angular/platform-browser": "~21.0.0",
"@angular/platform-browser-dynamic": "~21.0.0",
"@angular/router": "~21.0.0",
"@babel/preset-typescript": "^7.23.0",
"@nativescript-community/svelte-native": "^1.0.32",
"@nativescript/angular": "^21.0.0",
"@nativescript/core": "~9.0.0",
"@nativescript/plugin-tools": "5.5.3",
"@nativescript/tailwind": "^2.1.1",
"@nativescript/types": "~9.0.0",
"@nativescript/webpack": "~5.0.31",
"@ngtools/webpack": "~21.0.0",
"@nx/vite": "^22.3.3",
"@nx/vitest": "^22.3.3",
"@types/react": "npm:types-react-without-jsx-intrinsics@^18.0.17",
"husky": "~9.0.0",
"ng-packagr": "^21.0.1",
"patch-package": "^8.0.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "~18.2.0",
"react-nativescript": "^5.0.0",
"react-nativescript-navigation": "^5.0.0",
"rxjs": "~7.8.2",
"sass": "1.53.0",
"svelte": "^4.2.1",
"tailwindcss": "~3.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.16",
"zone.js": "~0.16.0"
},
"overrides": {
"@nativescript/core": "~9.0.0",
"@nativescript/nx": "^22.0.0",
"@nx/angular": "^22.0.0",
"@nx/devkit": "^22.0.0",
"@nx/eslint": "^22.0.0",
"@nx/workspace": "^22.0.0",
"@nx/js": "^22.0.0",
"@nx/plugin": "^22.0.0",
"@nx/jest": "^22.0.0",
"@nx/node": "^22.0.0",
"@nx/eslint-plugin": "^22.0.0",
"sass": "1.53.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}