-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.19 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
63
64
65
66
67
68
69
70
{
"name": "mondo",
"version": "1.0.0",
"description": "print spatial data on origami",
"main": "main.js",
"scripts": {
"start": "electron .",
"watch": "node ./watch.js --hot --inline",
"clean": "rimraf dist",
"compile": "npm run clean && mkdirp ./dist && webpack --config prod-webpack.config.js",
"compile-utils": "babel --presets es2015,stage-0 -d dist/ utils/",
"pack-linux": "npm run compile && electron-packager . --overwrite --asar=true --platform=linux --icon=assets/img/logo.png --arch=x64 --prune=true --out=release-builds",
"make-icons": "icon-gen -i ./assets/img/logo.svg -o ./assets/img/ -m ico,favicon,icns -r"
},
"author": "allyoucanmap (stefano bovio)",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.8.0",
"babel-eslint": "4.1.8",
"babel-istanbul-loader": "0.1.0",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.1.4",
"babel-plugin-object-assign": "1.2.1",
"babel-plugin-react-transform": "2.0.2",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"css-loader": "0.19.0",
"electron": "2.0.0",
"electron-packager": "12.2.0",
"electron-reload": "1.2.5",
"eslint": "0.24.1",
"eslint-plugin-react": "3.3.2",
"icon-gen": "1.2.3",
"less": "2.7.1",
"less-loader": "2.2.3",
"raw-loader": "0.5.1",
"react-hot-loader": "1.3.1",
"react-transform-catch-errors": "1.0.2",
"redbox-react": "1.3.6",
"style-loader": "0.12.4",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1",
"webpack-parallel-uglify-plugin": "0.4.0"
},
"dependencies": {
"axios": "0.18.0",
"chroma-js": "1.3.7",
"codemirror": "5.40.2",
"earcut": "2.1.3",
"file-saver": "2.0.0-rc.2",
"gl-matrix": "2.4.0",
"jsts": "1.6.1",
"lodash": "4.17.10",
"pg": "7.4.3",
"prop-types": "15.5.10",
"react": "15.6.2",
"react-codemirror2": "5.1.0",
"react-color": "2.14.1",
"react-dom": "15.5.4",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"shapefile": "0.6.6",
"tinycolor2": "1.4.1",
"uuid": "3.3.2"
}
}