-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
{
"name": "sample-app-angular",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"checkPeerDependencies": {
"ignore": [
"ajv",
"postcss",
"terser"
]
},
"scripts": {
"ng": "ng",
"start": "ng serve --configuration production",
"build": "ng build --configuration production",
"test": "npm run build && cypress-runner run --path=dist/browser",
"test:open": "npm run build && cypress-runner open --path=dist/browser",
"e2e": "npm run test",
"gh-pages": "ng build --base-href=/sample-app-angular/ && shx rm -rf pages && shx mkdir pages && cd pages && git init && git remote add pages git@github.com:ui-router/sample-app-angular.git && git fetch pages && git checkout gh-pages && git rm -rf * && shx mv ../dist/browser/* . && git add . && git commit -m 'Update gh-pages' . && git push && cd .. && shx rm -rf pages"
},
"private": true,
"dependencies": {
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@uirouter/angular": "^14.0.0",
"@uirouter/core": "6.1.0",
"@uirouter/rx": "1.0.0",
"@uirouter/visualizer": "^7.2.1",
"rxjs": "^7.4.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@angular/animations": "^19.0.5",
"@angular/cli": "^19.0.6",
"@angular/compiler-cli": "^19.0.5",
"@types/jasmine": "~3.10.2",
"@uirouter/cypress-runner": "^3.0.0",
"tslint": "6.1.3",
"typescript": "~5.6.3"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}