forked from lukasmartinelli/postgis-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.35 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": "postgis-editor",
"version": "1.2.1",
"description": "A PostGIS SQL query editor focused on accessible spatial development.",
"main": "main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lukasmartinelli/postgis-editor.git"
},
"scripts": {
"start": "electron main.js",
"build": "npm run build-es6 && npm run build-sass",
"lint": "eslint src",
"watch-es6": "babel src -d dist --source-maps inline --watch",
"build-es6": "babel src -d dist --source-maps inline",
"watch-sass": "nodemon -e scss -x \"npm run build-sass\"",
"build-sass": "node-sass --include-path scss resources/scss/main.scss resources/css/main.css",
"package-all": "electron-packager ./ postgis-editor --out=./releases --platform=all --arch=x64 --icon=./postgis-editor.build-icns --overwrite --asar --prune",
"package-windows": "electron-packager ./ postgis-editor --out=./releases --platform=win32 --arch=x64 --icon=./postgis-editor.build-icns --overwrite --asar --prune",
"package-osx": "electron-packager ./ postgis-editor --out=./releases --platform=darwin --arch=x64 --icon=./postgis-editor.build-icns --overwrite --asar --prune",
"package-linux": "electron-packager ./ postgis-editor --out=./releases --platform=linux --arch=x64 --icon=./postgis-editor.build-icns --overwrite --asar --prune"
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"electron-packager": "^7.3.0",
"electron-prebuilt": "^1.2.7",
"electron-rebuild": "^1.0.2",
"eslint": "^3.0.1",
"node-sass": "^3.4.2"
},
"dependencies": {
"configstore": "^2.0.0",
"dbgeo": "^0.1.0",
"install": "^0.8.1",
"lodash": "^4.9.0",
"mediator-js": "^0.9.9",
"pg-promise": "^5.1.3",
"randomcolor": "^0.4.4",
"react": "^15.2.1",
"react-addons-shallow-compare": "^15.2.1",
"react-codemirror": "^0.2.6",
"react-dom": "^15.2.1",
"react-modal": "^1.4.0",
"react-virtualized": "^7.12.1",
"turf": "^3.0.14"
}
}