-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
{
"name": "ng-dashboard",
"description": "Dashboard for Angular (v 4+)",
"author": "Yago Lopez <yago.lopez@gmail.com> (https://yagolopez.js.org)",
"repository": {
"type": "git",
"url": "git+https://github.com/YagoLopez/ng-dashboard.git"
},
"main": "/src/main.ts",
"version": "1.1.0",
"license": "MIT",
"keywords": [
"dashboard",
"angular",
"angular 2",
"chart",
"charts",
"angular components",
"angular charts",
"angular 4"
],
"angular-cli": {},
"scripts": {
"ng_serve": "ng serve --open",
"ng_serve_lan": "ng serve --host 192.168.0.14 --open",
"webpack_help": "webpack -h",
"webpack_config_file": "webpack-dev-server --config ./src/webpack.config.js --content-base=src --open",
"ng_serve_prod": "ng serve --prod",
"ng_serve_prod_aot": "ng serve --prod --aot",
"ng_build": "ng build",
"ng_build_prod": "ng build --prod",
"ng_build_prod_no_hashes": "ng build --prod --output-hashing none",
"ng_build_prod_aot": "ng build --prod --aot",
"ng_build_prod_aot_no_hashes": "ng build --prod --aot --output-hashing none"
},
"private": true,
"dependencies": {
"@angular/common": "^4.2.6",
"@angular/compiler": "^4.2.6",
"@angular/core": "^4.2.6",
"@angular/forms": "^4.2.6",
"@angular/http": "^4.2.6",
"@angular/platform-browser": "^4.2.6",
"@angular/platform-browser-dynamic": "^4.2.6",
"@angular/router": "^4.2.6",
"core-js": "^2.4.1",
"leaflet": "^1.0.3",
"metrics-graphics": "^2.11.0",
"rxjs": "^5.4.2",
"zone.js": "^0.8.12"
},
"devDependencies": {
"@angular/cli": "^1.2.0",
"@angular/compiler-cli": "^4.2.6",
"@types/geojson": "latest",
"@types/leaflet": "latest",
"@types/node": "~7.0.18",
"systemjs": "^0.20.14",
"ts-node": "~3.0.6",
"typescript": "~2.3.4"
}
}