-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.69 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
{
"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": "12.1.4",
"@angular/compiler": "12.1.4",
"@angular/core": "12.1.4",
"@angular/forms": "12.1.4",
"@angular/platform-browser": "12.1.4",
"@angular/platform-browser-dynamic": "12.1.4",
"@uirouter/angular": "^8.0.1",
"@uirouter/core": "6.0.8",
"@uirouter/rx": "0.6.5",
"@uirouter/visualizer": "^7.2.1",
"core-js": "^3.16.0",
"rxjs": "^7.3.0",
"rxjs-compat": "^6.6.7",
"ts-helpers": "^1.1.2",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.7",
"@angular/animations": "11.0.5",
"@angular/cli": "^11.2.12",
"@angular/compiler-cli": "11.0.5",
"@types/jasmine": "~3.6.10",
"@uirouter/cypress-runner": "^1.1.0",
"codelyzer": "^6.0.2",
"fibers": "5.0.0",
"html-webpack-plugin": "4.3.0",
"node-sass": "4.14.1",
"shx": "^0.3.3",
"tslint": "6.1.2",
"typescript": "~4.0.8"
}
}