-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 2.89 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "husky && npx ts-patch install && patch-package",
"setup": "yarn setup:clean && yarn setup:install && nx run-many --target=clean --all && yarn setup:regen",
"setup:clean": "npx rimraf node_modules package-lock.json dist tmp yarn.lock",
"setup:regen": "node tools/scripts/reset-generated-files.js",
"setup:install": "yarn config set ignore-engines true && 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",
"demo:hooks": "nx run core:build.hooks.demo",
"build:npm": "nx run core:build.npm && yarn setup:regen",
"build:rnmt": "nx run react-native-module-test:build.all",
"build:packages": "nx run-many --target=build.all --all",
"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",
"start:metro": "nx run demo-react-native:start",
"start:rna": "nx run demo-react-native:run-android",
"start:rni": "nx run demo-react-native:run-ios",
"test:hooks": "yarn demo:hooks && node ./packages/core/test_hook.js",
"build:docs": "docgen build --release && cp -a ./site/. ./docs/"
},
"private": true,
"dependencies": {
"react": "^18.0.2",
"react-native": "^0.74.0",
"tslib": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/plugin-syntax-decorators": "^7.22.5",
"@babel/runtime": "^7.18.9",
"@nativescript/core": "~8.8.0",
"@nativescript/plugin-tools": "5.4.1",
"@nativescript/tailwind": "^2.1.0",
"@nativescript/types": "~8.8.0",
"@nativescript/webpack": "~5.0.22",
"@nx/react-native": "^19.0.0",
"@react-native-community/eslint-config": "^3.2.0",
"@rigor789/resolve-package-path": "1.0.7",
"@types/jest": "~29.5.0",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^27.4.6",
"eslint": "^8.23.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"glob": "^10.0.0",
"husky": "~9.0.0",
"jest": "29.6.2",
"metro-react-native-babel-preset": "^0.67.0",
"nativescript-vue": "~2.9.0",
"nativescript-vue-template-compiler": "~2.9.0",
"patch-package": "^8.0.0",
"react-test-renderer": "^18.3.1",
"rxjs": "~7.8.0",
"tailwindcss": "~3.4.0",
"typescript": "~5.5.0",
"zone.js": "~0.14.0",
"@nativescript/angular": "^18.0.0",
"@ngtools/webpack": "^18.0.0",
"ng-packagr": "^18.0.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}