-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
122 lines (122 loc) · 3.97 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "nativescript-angular",
"version": "19.0.0",
"license": "MIT",
"private": true,
"scripts": {
"clean": "npx rimraf hooks node_modules package-lock.json && yarn",
"clean.all": "npm run clean && nx run-many --target=clean --all",
"postinstall": "husky",
"nx": "nx",
"start": "nx serve",
"build": "nx build zone-js && nx build angular",
"test.android": "nx test nativescript-demo-ng android",
"test.ios": "nx test nativescript-demo-ng ios",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator",
"demo.android": "nx debug nativescript-demo-ng android -c=prod",
"demo.ios": "nx debug nativescript-demo-ng ios -c=prod",
"demo.clean": "nx clean nativescript-demo-ng clean",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@angular/animations": "~19.0.4",
"@angular/common": "~19.0.4",
"@angular/compiler": "~19.0.4",
"@angular/core": "~19.0.4",
"@angular/forms": "~19.0.4",
"@angular/platform-browser": "~19.0.4",
"@angular/platform-browser-dynamic": "~19.0.4",
"@angular/router": "~19.0.4",
"@nativescript/core": "~8.8.0",
"@nativescript/tailwind": "^2.1.0",
"nativescript-fonticon": "~8.1.3",
"rxjs": "^7.8.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.0.4",
"@angular-devkit/core": "~19.0.4",
"@angular-devkit/schematics": "~19.0.4",
"@angular-eslint/eslint-plugin": "~19.0.2",
"@angular-eslint/eslint-plugin-template": "~19.0.2",
"@angular-eslint/template-parser": "~19.0.2",
"@angular/compiler-cli": "~19.0.3",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@nativescript/nx": "20.0.4",
"@nativescript/types": "~8.8.0",
"@nativescript/unit-test-runner": "^3.0.4",
"@nativescript/webpack": "~5.0.22",
"@ngtools/webpack": "~19.0.0",
"@nx/angular": "20.3.0",
"@nx/eslint": "20.3.0",
"@nx/eslint-plugin": "20.3.0",
"@nx/jest": "20.3.0",
"@nx/js": "20.3.0",
"@nx/node": "20.3.0",
"@nx/workspace": "20.3.0",
"@schematics/angular": "~19.0.4",
"@types/jasmine": "5.1.4",
"@types/jest": "29.5.13",
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@typescript-eslint/utils": "^8.13.0",
"conventional-changelog-cli": "^5.0.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"fs-extra": "^11.1.0",
"husky": "~9.1.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"karma": "6.4.2",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-nativescript-launcher": "0.4.0",
"karma-sinon": "^1.0.5",
"lint-staged": "^15.0.0",
"ng-packagr": "~19.0.1",
"nx": "20.3.0",
"nyc": "17.1.0",
"postcss": "^8.4.16",
"postcss-import": "16.1.0",
"postcss-preset-env": "~10.1.3",
"postcss-url": "10.1.3",
"prettier": "~3.4.0",
"sass": "^1.54.5",
"sinon": "^17.0.0",
"tailwindcss": "~3.4.0",
"ts-jest": "~29.2.0",
"ts-node": "10.9.2",
"tslib": "^2.8.0",
"typescript": "5.6.3"
},
"xplat": {
"prefix": "nativescript",
"framework": "angular"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"nx format:write --files",
"nx affected:lint --fix --files"
]
}
}