forked from ui-router/sample-app-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "sample-app-angular",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"checkPeerDependencies": {
"ignore": [
"ajv",
"postcss"
]
},
"scripts": {
"ng": "ng",
"start": "ng serve --configuration production --source-map",
"build": "ng build --configuration production --source-map",
"test": "npm run build && cypress-runner run",
"test:open": "npm run build && cypress-runner open",
"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/* . && git add . && git commit -m 'Update gh-pages' . && git push && cd .. && shx rm -rf pages"
},
"private": true,
"dependencies": {
"@angular/common": "15.0.4",
"@angular/compiler": "15.0.4",
"@angular/core": "15.0.4",
"@angular/forms": "15.0.4",
"@angular/platform-browser": "15.0.4",
"@angular/platform-browser-dynamic": "15.0.4",
"@uirouter/angular": "^10.0.0",
"@uirouter/core": "6.0.8",
"@uirouter/rx": "1.0.0",
"@uirouter/visualizer": "^7.2.1",
"core-js": "^2.5.7",
"rxjs": "^7.4.0",
"rxjs-compat": "^6.6.7",
"ts-helpers": "^1.1.2",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.4",
"@angular/animations": "15.0.4",
"@angular/cli": "^15.0.4",
"@angular/compiler-cli": "15.0.4",
"@types/jasmine": "~3.10.2",
"@uirouter/cypress-runner": "^3.0.0",
"fibers": "5.0.0",
"html-webpack-plugin": "5.5.0",
"shx": "^0.3.3",
"tslint": "6.1.3",
"typescript": "~4.8.3"
}
}