-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start-storybook": "yarn start-storybook",
"postinstall": "husky install && npx ts-patch install",
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && yarn config set ignore-engines true && yarn",
"clean.all": "yarn setup && nx run-many --target=clean --all",
"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": "^15.0.0",
"@angular/animations": "^15.0.0",
"@angular/cli": "^15.0.0",
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"@nativescript/angular": "^15.0.0",
"@nativescript/core": "~8.4.0",
"@nativescript/plugin-tools": "5.1.0",
"@nativescript/types": "~8.4.0",
"@nativescript/webpack": "~5.0.5",
"@ngtools/webpack": "^15.0.0",
"@nrwl/devkit": "15.8.1",
"@nrwl/jest": "15.8.1",
"@nrwl/js": "15.8.1",
"@nrwl/node": "15.8.1",
"@nrwl/nx-plugin": "15.8.1",
"@nrwl/storybook": "15.8.1",
"@storybook/addon-controls": "7.0.18",
"@storybook/addon-essentials": "7.0.18",
"@storybook/addons": "7.0.18",
"@storybook/angular": "7.0.18",
"@storybook/builder-webpack5": "7.0.18",
"@storybook/core-server": "7.0.18",
"@storybook/core-webpack": "7.0.18",
"@storybook/native-controllers": "^2.2.8",
"@storybook/types": "7.0.18",
"@storybook/vue-webpack5": "7.0.18",
"@swc-node/register": "^1.4.2",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.173",
"@swc/helpers": "~0.4.11",
"@types/jest": "29.4.0",
"@types/node": "~18.7.1",
"@valor/nativescript-websockets": "^1.0.5",
"ansi-colors": "^4.1.3",
"browserify-zlib": "^0.2.0",
"commander": "^8.0.0",
"https-browserify": "^1.0.0",
"husky": "^8.0.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jsonc-eslint-parser": "^2.1.0",
"nativescript-vue": "~2.9.0",
"nativescript-vue-template-compiler": "~2.9.0",
"ng-packagr": "^15.0.0",
"nx": "15.8.1",
"os-browserify": "^0.3.0",
"rxjs": "~7.6.0",
"storybook": "^7.0.18",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-dedent": "^2.0.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"tslib": "^2.5.0",
"tty-browserify": "^0.0.1",
"typescript": "~4.9.5",
"vue": "~2.6.12",
"webpack": "^5.64.0",
"ws": "^8.13.0",
"zone.js": "0.12.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
},
"dependencies": {}
}