scratch-desktop/package.json

57 lines
1.9 KiB
JSON
Raw Normal View History

2018-09-06 14:20:27 -04:00
{
"name": "scratch-desktop",
2018-09-06 14:45:37 -04:00
"productName": "Scratch 3.0",
2018-09-06 14:20:27 -04:00
"description": "Scratch 3.0 as a self-contained desktop application",
"author": "Massachusetts Institute of Technology",
"version": "0.1.0",
2018-09-06 14:20:27 -04:00
"license": "BSD-3-Clause",
2017-08-27 15:15:38 -04:00
"scripts": {
2018-10-18 22:03:56 -04:00
"start": "electron-webpack dev --bail --display-error-details --env.minify=false",
"compile": "electron-webpack --bail --display-error-details --env.minify=false",
2018-10-19 17:30:23 -04:00
"fetch": "node ./scripts/fetchMediaLibraryAssets.js",
"dist": "npm run compile && electron-builder",
2018-09-19 18:15:02 -04:00
"dist:dir": "npm run dist -- --dir -c.compression=store -c.mac.identity=null",
"lint": "eslint --cache --color --ext .jsx,.js ."
2017-08-27 15:15:38 -04:00
},
2018-10-31 18:02:01 -04:00
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LLK/scratch-desktop.git"
},
2017-08-27 15:15:38 -04:00
"dependencies": {
2018-08-21 03:21:54 -04:00
"source-map-support": "^0.5.9"
2017-08-27 15:15:38 -04:00
},
2018-09-06 14:20:27 -04:00
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
2018-10-19 17:30:23 -04:00
"async": "^2.6.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-react-intl": "^2.3.1",
"copy-webpack-plugin": "^4.5.1",
2018-09-27 17:43:04 -04:00
"electron": "^3.0.2",
2018-08-21 03:21:54 -04:00
"electron-builder": "^20.28.1",
2018-10-13 04:26:58 -04:00
"electron-devtools-installer": "^2.2.4",
"electron-webpack": "^2.3.1",
"eslint": "^5.0.1",
2018-09-19 18:15:02 -04:00
"eslint-config-scratch": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"intl": "1.2.5",
2018-09-26 15:54:08 -04:00
"react": "16.2.0",
"react-dom": "16.2.0",
"react-intl": "2.4.0",
2018-09-26 15:54:08 -04:00
"react-redux": "5.0.7",
"redux": "3.7.2",
"scratch-gui": "0.1.0-prerelease.20180927141400",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0"
},
"resolutions": {
2018-08-21 03:21:54 -04:00
"upath": "^1.0.5"
2018-09-06 14:20:27 -04:00
}
}