forked from ui-router/sample-app-angular-hybrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sample-app-angular-hybrid",
"description": "Architecture overview demo for Angular UI-Router",
"version": "1.0.2",
"scripts": {
"clean": "shx rm -rf _bundles transpiled",
"start": "npm run serve",
"serve": "webpack-dev-server --open --progress",
"build": "npm run clean && webpack --mode=production",
"test": "npm run build && cypress-runner run --path .",
"test:open": "npm run build && cypress-runner open --path .",
"gh-pages": "git checkout gh-pages && git rebase master && rm -rf node_modules && yarn install && webpack && git add -f _bundles && git commit -m 'publish gh-pages' && git push origin gh-pages:gh-pages --force && git checkout master"
},
"contributors": [
{
"name": "Chris Thielen",
"web": "https://github.com/christopherthielen"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ui-router/sample-app-angular-hybrid.git"
},
"dependencies": {
"@angular/animations": "9.1.4",
"@angular/common": "^9.1.4",
"@angular/compiler": "^9.1.4",
"@angular/compiler-cli": "^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",
"@angular/router": "^9.1.4",
"@angular/upgrade": "^9.1.4",
"@uirouter/angular": "6.0.1",
"@uirouter/angular-hybrid": "10.0.1",
"@uirouter/angularjs": "1.0.26",
"@uirouter/core": "6.0.5",
"@uirouter/rx": "0.6.5",
"@uirouter/visualizer": "^7.0.0",
"angular": "^1.7.9",
"rxjs": "^6.5.5",
"rxjs-compat": "^6.5.5",
"tslib": "^1.11.2",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.4",
"@angular/cli": "^9.1.4",
"@ngtools/webpack": "^9.1.4",
"@types/angular": "^1.7.0",
"@uirouter/cypress-runner": "^1.1.0",
"codelyzer": "^5.2.2",
"shx": "^0.3.2",
"source-map-loader": "^0.2.4",
"typescript": "3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}