forked from appbaseio/mirage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.94 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": "mirage",
"version": "0.11.0",
"description": "🔎 GUI for Elasticsearch Queries",
"author": "Appbase Inc.",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"postinstall": "typings install",
"typings": "typings",
"lite": "lite-server",
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" \"gulp watch\" ",
"test": "live-server --open=unit-tests.html",
"build": "tsc && gulp build",
"build_gh_pages": "npm run build && gulp build_gh_pages",
"build_es_plugin": "npm run build && gulp build_es_plugin",
"build_chrome_extension": "npm run build && gulp build_chrome_extension && sh chrome-build.sh",
"build:all": "npm run build && gulp build_gh_pages && gulp build_es_plugin && gulp build_chrome_extension"
},
"dependencies": {
"@angular/common": "~2.0.2",
"@angular/compiler": "~2.0.2",
"@angular/core": "~2.0.2",
"@angular/forms": "~2.0.2",
"@angular/http": "~2.0.2",
"@angular/platform-browser": "~2.0.2",
"@angular/platform-browser-dynamic": "~2.0.2",
"@angular/upgrade": "~2.0.2",
"angular-in-memory-web-api": "~0.1.5",
"appbase-js": "2.2.6",
"bootstrap": "^3.4.1",
"core-js": "^2.4.0",
"gulp-sass": "^2.3.1",
"moment": "^2.13.0",
"node-sass": "^3.6.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.27",
"zone.js": "^0.6.12"
},
"devDependencies": {
"browserify": "^13.0.1",
"concurrently": "^2.0.0",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.6.0",
"gulp-connect": "^2.2.0",
"gulp-livereload": "^3.7.0",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gulp-watch": "^4.3.5",
"jasmine-core": "2.4.1",
"lite-server": "^2.2.0",
"live-server": "^1.2.1",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"uglifyjs": "^2.4.10"
}
}