mirror of
https://github.com/xodio/xod.git
synced 2026-02-20 02:01:20 +01:00
81 lines
2.1 KiB
JSON
81 lines
2.1 KiB
JSON
{
|
|
"author": "XOD Team <dev@xod.io>",
|
|
"description": "XOD visual programming language IDE",
|
|
"homepage": "https://xod.io/",
|
|
"license": "AGPL-3.0",
|
|
"main": "src-babel/app/main.js",
|
|
"name": "xod-client-electron",
|
|
"version": "0.1.4",
|
|
"scripts": {
|
|
"copy-workspace": "cpx \"src/workspace/**/*\" \"src-babel/workspace\"",
|
|
"build:gui": "webpack --colors",
|
|
"build:app": "babel src/app/ -d src-babel/app/ && babel src/shared/ -d src-babel/shared/",
|
|
"build": "yarn build:gui && yarn build:app && yarn copy-workspace",
|
|
"start": "electron ./src-babel/app/main.js",
|
|
"electron-rebuild": "electron-rebuild",
|
|
"test": "electron-mocha ./test",
|
|
"test-func": "mocha --opts test-func/mocha.opts test-func/**/*.spec.js",
|
|
"pack": "build --dir",
|
|
"dist": "build"
|
|
},
|
|
"dependencies": {
|
|
"babel-polyfill": "^6.16.0",
|
|
"classnames": "^2.2.5",
|
|
"electron-settings": "^3.0.14",
|
|
"ramda": "^0.23.0",
|
|
"rc-progress": "^2.1.2",
|
|
"react": "^15.4.2",
|
|
"react-dom": "^15.4.2",
|
|
"react-event-listener": "^0.3.0",
|
|
"react-fa": "^4.1.2",
|
|
"react-hotkeys": "^0.9.0",
|
|
"react-redux": "^4.4.5",
|
|
"react-skylight": "git+https://github.com/xodio/react-skylight.git",
|
|
"redux": "^3.0.5",
|
|
"redux-thunk": "^2.1.0",
|
|
"serialport": "^4.0.7",
|
|
"xod-arduino": "^0.1.4",
|
|
"xod-arduino-builder": "^0.1.4",
|
|
"xod-client": "^0.1.4",
|
|
"xod-espruino-upload": "^0.1.4",
|
|
"xod-fs": "^0.1.4",
|
|
"xod-func-tools": "^0.1.4",
|
|
"xod-js": "^0.1.4",
|
|
"xod-project": "^0.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.16.0",
|
|
"chai": "^3.5.0",
|
|
"chai-as-promised": "^6.0.0",
|
|
"cpx": "^1.5.0",
|
|
"devtron": "^1.3.0",
|
|
"electron": "1.6.8",
|
|
"electron-builder": "^17.1.1",
|
|
"electron-mocha": "^3.4.0",
|
|
"electron-rebuild": "^1.4.0",
|
|
"fs-extra": "^3.0.1",
|
|
"fsp": "^0.1.2",
|
|
"webpack": "^1.13.2",
|
|
"webpack-target-electron-renderer": "^0.4.0"
|
|
},
|
|
"build": {
|
|
"appId": "io.xod.ide",
|
|
"linux": {
|
|
"target": [
|
|
"deb",
|
|
"rpm"
|
|
]
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
"dmg"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": [
|
|
"nsis"
|
|
]
|
|
}
|
|
}
|
|
}
|