This repository was archived by the owner on Feb 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "GEM",
"version": "0.1.0",
"description": "💎 GUI for Elasticsearch Mappings",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-server": "webpack-dev-server --hot --inline --progress --colors --port 8000",
"web-server": "http-server -p 3000 .",
"start": "concurrently \"npm run webpack-server\" \"gulp watch\"",
"build": "set NODE_ENV=production&& webpack -p && gulp",
"build_es_plugin": "npm run build && gulp build_es_plugin",
"build_chrome_extension": "bower update && npm run build && gulp chromeBuild"
},
"author": "Farhan Chauhan",
"dependencies": {
"babel-preset-stage-0": "^6.5.0",
"fbemitter": "^2.1.1",
"jquery": "^3.1.1",
"md5": "^2.2.1",
"react": "^15.1.0",
"react-bootstrap": "^0.30.5",
"react-codemirror": "^0.2.6",
"react-dom": "^15.1.0",
"react-highlight": "^0.9.0",
"react-select2-wrapper": "^1.0.3",
"react-toastr": "^2.8.1",
"react-tooltip": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"concurrently": "^3.1.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^2.0.0",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"gulp-uglify": "^1.5.3",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}