forked from triniwiz/nativescript-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.62 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
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && yarn",
"postinstall": "husky install && npx ts-patch 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",
"docs:build": "cd docs && vuepress build src",
"docs:dev": "cd docs && vuepress dev src",
"start:server-demo": "node dist/apps/server-demo/main",
"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/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.6.0",
"@nativescript/plugin-tools": "5.1.0",
"@nativescript/types": "~8.6.0",
"@nativescript/webpack": "~5.0.5",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nestjs/websockets": "^9.0.0",
"@ngtools/webpack": "^15.0.0",
"@types/jest": "29.5.0",
"@types/react": "npm:types-react-without-jsx-intrinsics@^16.14.30",
"@types/socket.io": "^3.0.2",
"@valor/nativescript-websockets": "^1.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"date-fns": "^2.21.3",
"express": "^4.17.1",
"husky": "^8.0.0",
"jest": "28.1.3",
"nativescript-permissions": "1.3.11",
"nativescript-videoplayer": "^5.0.1",
"nativescript-vue": "~2.9.0",
"nativescript-vue-template-compiler": "~2.9.0",
"ng-packagr": "^15.0.0",
"pusher": "^5.0.0",
"react": "^16.14.0",
"react-nativescript": "^4.0.0",
"react-nativescript-navigation": "^4.0.0",
"rxjs": "~7.8.0",
"socket.io": "^4.1.1",
"svelte": "3.24.1",
"svelte-native": "~1.0.4",
"ts-jest": "28.0.8",
"tslib": "^2.0.0",
"typescript": "~4.8.0",
"vuepress": "^1.9.8",
"whatwg-url": "11.0.0",
"zone.js": "~0.13.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
},
"dependencies": {
"postcss-import": "^15.1.0"
}
}