This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.57 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
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"setup": "npx rimraf node_modules package-lock.json dist tmp && npm i && 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",
"sync-packages-with-demos": "nx g @nativescript/plugin-tools:sync-packages-with-demos",
"postinstall": "node ./node_modules/husky/lib/installer/bin install"
},
"private": true,
"devDependencies": {
"@angular/animations": "~11.2.2",
"@angular/common": "~11.2.2",
"@angular/compiler": "~11.2.2",
"@angular/compiler-cli": "~11.2.2",
"@angular/core": "~11.2.2",
"@angular/forms": "~11.2.2",
"@angular/platform-browser": "~11.2.2",
"@angular/platform-browser-dynamic": "~11.2.2",
"@angular/router": "~11.2.2",
"@nativescript/angular": "~11.0.1",
"@nativescript/core": "~7.2.1",
"@nativescript/plugin-tools": "^1.1.0",
"@nativescript/theme": "^2.5.0",
"@nativescript/types": "~7.2.0",
"@nativescript/webpack": "~4.1.0",
"@ngtools/webpack": "~11.2.1",
"@nrwl/eslint-plugin-nx": "^11.3.1",
"@nrwl/jest": "^11.3.1",
"@nrwl/node": "^11.3.1",
"@nrwl/workspace": "^11.3.1",
"@nstudio/focus": "^11.1.0",
"@nstudio/nps-i": "~1.1.1",
"@types/jest": "~26.0.20",
"@types/node": "~14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"autoprefixer": "^10.2.4",
"dart-sass": "^1.25.0",
"dotenv": "~8.2.0",
"eslint": "~7.20.0",
"eslint-config-prettier": "~8.0.0",
"husky": "^4.3.0",
"jest": "~26.4.1",
"lint-staged": "^10.5.4",
"nativescript-permissions": "^1.3.11",
"nativescript-theme-core": "~1.0.4",
"nativescript-vue": "~2.8.3",
"nativescript-vue-template-compiler": "~2.8.3",
"ng-packagr": "~11.2.4",
"node-sass": "^7.0.0",
"postcss": "^8.4.31",
"postcss-url": "^10.1.1",
"prettier": "^2.2.1",
"pretty-data": "^0.40.0",
"reflect-metadata": "~0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"strip-json-comments": "^3.1.1",
"ts-jest": "^26.5.1",
"ts-node": "~9.1.1",
"ts-patch": "^1.3.2",
"tslint": "^6.1.3",
"typescript": "~4.1.5",
"xml2js": "^0.5.0",
"zone.js": "^0.11.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"nx format:write --files"
]
}
}