-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.36 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
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"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 && ns package-manager set npm && yarn && cd apps/demo && npm i && cd ../..",
"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": "^13.2.0",
"@angular/animations": "^13.2.0",
"@angular/common": "^13.2.0",
"@angular/compiler": "^13.2.0",
"@angular/compiler-cli": "^13.2.0",
"@angular/core": "^13.2.0",
"@angular/forms": "^13.2.0",
"@angular/platform-browser": "^13.2.0",
"@angular/platform-browser-dynamic": "^13.2.0",
"@angular/router": "^13.2.0",
"@nativescript/angular": "^13.0.0",
"@nativescript/core": "~8.2.0",
"@nativescript/local-notifications": "~6.1.1",
"@nativescript/nx": "3.0.17",
"@nativescript/plugin-tools": "3.0.3",
"@nativescript/types": "~8.2.0",
"@nativescript/webpack": "~5.0.5",
"@ngtools/webpack": "^13.0.0",
"@swc-node/register": "~1.4.2",
"@triniwiz/nativescript-couchbase": "~1.3.1",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@types/jasmine": "^4.0.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "^7.0.0",
"nativescript-context-apis": "^4.1.0",
"nativescript-permissions": "1.3.11",
"nativescript-task-dispatcher": "^3.1.1",
"nativescript-vue": "~2.9.0",
"nativescript-vue-template-compiler": "~2.9.0",
"nativescript-wearos-sensors": "^1.2.0",
"ng-packagr": "^13.2.0",
"rxjs": "^7.5.5",
"typescript": "~4.5.5",
"zone.js": "~0.11.1"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}