forked from NativeScript/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.08 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
123
124
{
"name": "nativescript-angular",
"version": "17.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 install",
"nx": "nx",
"start": "nx serve",
"build": "nx run zone-js:build && nx run angular:build",
"test.android": "nx run nativescript-demo-ng:test:android",
"test.ios": "nx run nativescript-demo-ng:test: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 run nativescript-demo-ng:android",
"demo.ios": "nx run nativescript-demo-ng:ios",
"demo.clean": "nx run nativescript-demo-ng:clean",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@angular/animations": "17.0.0",
"@angular/common": "17.0.0",
"@angular/compiler": "17.0.0",
"@angular/core": "17.0.0",
"@angular/forms": "17.0.0",
"@angular/platform-browser": "17.0.0",
"@angular/platform-browser-dynamic": "17.0.0",
"@angular/router": "17.0.0",
"@nativescript/core": "~8.6.0",
"@nativescript/theme": "~3.0.2",
"@ngx-translate/core": "~15.0.0",
"nativescript-fonticon": "~8.0.0",
"rxjs": "^7.8.0",
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.0.0",
"@angular-devkit/core": "17.0.0",
"@angular-devkit/schematics": "17.0.0",
"@angular-eslint/eslint-plugin": "17.0.0",
"@angular-eslint/eslint-plugin-template": "17.0.0",
"@angular-eslint/template-parser": "17.0.0",
"@angular/compiler-cli": "17.0.0",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@nativescript/types": "~8.6.0",
"@nativescript/unit-test-runner": "^3.0.4",
"@nativescript/webpack": "~5.0.12",
"@ngtools/webpack": "17.0.0",
"@nstudio/angular": "17.0.1",
"@nstudio/nativescript": "17.0.1",
"@nstudio/nativescript-angular": "17.0.1",
"@nstudio/xplat": "17.0.1",
"@nx/angular": "17.1.0-beta.4",
"@nx/eslint": "17.1.0-beta.4",
"@nx/eslint-plugin": "17.1.0-beta.4",
"@nx/jest": "17.1.0-beta.4",
"@nx/js": "17.1.0-beta.4",
"@nx/node": "17.1.0-beta.4",
"@nx/workspace": "17.1.0-beta.4",
"@schematics/angular": "17.0.0",
"@types/jasmine": "5.1.1",
"@types/jest": "29.5.7",
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"conventional-changelog-cli": "^4.1.0",
"dotenv": "16.3.1",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"fs-extra": "^11.1.0",
"husky": "~8.0.1",
"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": "17.0.0",
"nx": "17.1.0-beta.4",
"nyc": "15.1.0",
"postcss": "^8.4.16",
"postcss-import": "15.1.0",
"postcss-preset-env": "9.3.0",
"postcss-url": "10.1.3",
"prettier": "3.0.3",
"sass": "^1.54.5",
"sinon": "^17.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tslib": "^2.6.0",
"typescript": "5.2.2"
},
"xplat": {
"prefix": "nativescript",
"framework": "angular"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"nx format:write --files",
"nx affected:lint --fix --files"
]
}
}