-
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) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.72 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
{
"homepage": "https://daggerok.github.io/angular-examples",
"name": "angular-examples",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod --aot",
"lint": "ng lint",
"preserve": "yarn -i; npm-run-all preserve:*",
"preserve:build": "yarn build",
"preserve:serve": "serve -C -p 3000 -s -o ./dist",
"predeploy": "yarn -i; npm-run-all predeploy:*",
"predeploy:build": "yarn build -- --base-href='/angular-examples/'",
"predeploy:404-html": "ncp ./dist/index.html ./dist/404.html",
"deploy": "gh-pages -d ./dist -b gh-pages -m \"Github Pages $(date +%Y-%m-%d) deployment\""
},
"private": true,
"dependencies": {
"@angular/common": "4.4.1",
"@angular/compiler": "4.4.1",
"@angular/core": "4.4.1",
"@angular/forms": "4.4.1",
"@angular/http": "4.4.1",
"@angular/platform-browser": "4.4.1",
"@angular/platform-browser-dynamic": "4.4.1",
"@angular/router": "4.4.1",
"angularfire2": "4.0.0-rc.2",
"bootstrap": "4.0.0-beta",
"bootswatch": "4.0.0-alpha.6",
"core-js": "2.5.1",
"firebase": "4.3.1",
"jquery": "3.2.1",
"popper.js": "1.12.5",
"rxjs": "5.4.3",
"tether": "1.4.0",
"zone.js": "0.8.17"
},
"devDependencies": {
"@angular/cli": "1.4.2",
"@angular/compiler-cli": "4.4.1",
"@types/node": "8.0.28",
"codelyzer": "3.2.0",
"gh-pages": "1.0.0",
"livereload": "0.6.2",
"ncp": "2.0.0",
"npm-run-all": "4.1.1",
"serve": "6.1.0",
"ts-node": "3.3.0",
"tslint": "5.7.0",
"typescript": ">=2.1.0 <2.4.0"
},
"livereload": {
"exclusions": [
"node_modules",
"*.json",
"README.*",
"yarn.lock"
]
}
}