-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "Angular2-leaflet-example",
"version": "0.0.0",
"scripts": {
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" \"gulp less\"",
"lite": "lite-server",
"postinstall": "npm prune",
"tsc": "tsc",
"tsc:w": "tsc -w",
"build": "gulp build && npm run minify",
"minify": "uglifyjs dist/js/bundle.js --screw-ie8 --compress --mangle --output dist/js/bundle.min.js > minify.log 2>&1"
},
"license": "MIT",
"dependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "~2.4.0",
"@angular/compiler-cli": "^2.4.5",
"@angular/core": "~2.4.0",
"@angular/forms": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/platform-server": "^2.4.5",
"@angular/router": "~3.4.0",
"@angular/upgrade": "~2.4.0",
"@types/core-js": "*",
"@types/leaflet": "*",
"@types/node": "*",
"angular-in-memory-web-api": "~0.2.4",
"angular2-ie9-shims": "0.0.2",
"bootstrap": "^3.3.7",
"concurrently": "^3.1.0",
"core-js": "^2.4.1",
"leaflet": "^1.0.1",
"moment": "^2.17.1",
"ng2-bootstrap": "^1.3.1",
"ng2-dnd": "^2.2.1",
"run-sequence": "^1.2.2",
"rxjs": "^5.0.3",
"rxjs-es": "^5.0.0-beta.12",
"zone.js": "^0.7.4"
},
"devDependencies": {
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-flatten": "^0.3.1",
"gulp-inline-ng2-template": "^4.0.0",
"gulp-less": "^3.3.0",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^2.4.0",
"gulp-typescript": "^3.1.4",
"lite-server": "^2.2.2",
"path": "^0.12.7",
"reflect-metadata": "^0.1.9",
"run-sequence": "^1.2.2",
"systemjs": "^0.20.2",
"systemjs-builder": "^0.16.0",
"typescript": "^2.1.5",
"uglifyjs": "^2.4.10"
}
}