forked from ui-router/sample-app-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.54 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.54 KB
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
{
"name": "sample-app-angular",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "ng serve --prod --source-map",
"build": "ng build --prod --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": "=9.1.4",
"@angular/compiler": "=9.1.4",
"@angular/core": "=9.1.4",
"@angular/forms": "=9.1.4",
"@angular/platform-browser": "=9.1.4",
"@angular/platform-browser-dynamic": "=9.1.4",
"@uirouter/angular": "^6.0.1",
"@uirouter/core": "6.0.5",
"@uirouter/rx": "0.6.5",
"@uirouter/visualizer": "^7.0.0",
"core-js": "^2.5.7",
"rxjs": "^6.5.5",
"rxjs-compat": "^6.5.5",
"ts-helpers": "^1.1.2",
"tslib": "^1.11.2",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.4",
"@angular/cli": "^9.1.4",
"@angular/compiler-cli": "=9.1.4",
"@types/jasmine": "^3.5.10",
"@uirouter/cypress-runner": "^1.1.0",
"codelyzer": "^5.2.2",
"shx": "^0.3.2",
"typescript": "3.8.3"
}
}