2018-09-06 14:20:27 -04:00
|
|
|
{
|
|
|
|
"name": "scratch-desktop",
|
2018-12-13 05:03:59 -05:00
|
|
|
"productName": "Scratch Desktop",
|
2018-09-06 14:20:27 -04:00
|
|
|
"description": "Scratch 3.0 as a self-contained desktop application",
|
2019-03-06 12:59:58 -05:00
|
|
|
"author": "Scratch Foundation",
|
2019-06-10 01:28:37 -04:00
|
|
|
"version": "3.4.0-rc.1",
|
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",
|
2019-05-16 23:23:30 -04:00
|
|
|
"build-gui": "cd ./node_modules/scratch-gui && BUILD_MODE=dist STATIC_PATH=static npm run build",
|
2018-10-31 18:40:27 -04:00
|
|
|
"clean": "rimraf ./dist/ ./static/assets/",
|
|
|
|
"compile": "rimraf ./dist/ && electron-webpack --bail --display-error-details --env.minify=false",
|
|
|
|
"fetch": "rimraf ./static/assets/ && mkdirp ./static/assets/ && node ./scripts/fetchMediaLibraryAssets.js",
|
2018-12-27 18:29:57 -05:00
|
|
|
"dist": "npm run fetch && npm run compile -p && 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": {
|
2019-05-13 20:24:50 -04:00
|
|
|
"source-map-support": "^0.5.12"
|
2017-08-27 15:15:38 -04:00
|
|
|
},
|
2018-09-06 14:20:27 -04:00
|
|
|
"devDependencies": {
|
2019-05-13 20:24:50 -04:00
|
|
|
"@babel/core": "^7.4.4",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
|
2018-12-05 02:00:21 -05:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
2019-05-13 20:24:50 -04:00
|
|
|
"@babel/plugin-transform-async-to-generator": "^7.4.4",
|
|
|
|
"@babel/preset-env": "^7.4.4",
|
2018-09-26 21:16:35 -04:00
|
|
|
"@babel/preset-react": "^7.0.0",
|
2019-05-13 20:24:50 -04:00
|
|
|
"async": "^2.6.2",
|
2018-10-19 20:45:45 -04:00
|
|
|
"babel-eslint": "^10.0.1",
|
2019-05-13 20:24:50 -04:00
|
|
|
"babel-loader": "^8.0.6",
|
2018-10-19 20:45:45 -04:00
|
|
|
"babel-plugin-react-intl": "^2.3.1",
|
2018-12-05 02:00:21 -05:00
|
|
|
"copy-webpack-plugin": "^4.6.0",
|
2019-05-13 20:24:50 -04:00
|
|
|
"electron": "^4.2.0",
|
|
|
|
"electron-builder": "^20.40.2",
|
2018-10-13 04:26:58 -04:00
|
|
|
"electron-devtools-installer": "^2.2.4",
|
2019-05-13 20:24:50 -04:00
|
|
|
"electron-store": "^3.2.0",
|
|
|
|
"electron-webpack": "^2.6.2",
|
|
|
|
"eslint": "^5.16.0",
|
2018-09-19 18:15:02 -04:00
|
|
|
"eslint-config-scratch": "^5.0.0",
|
2019-05-13 20:24:50 -04:00
|
|
|
"eslint-plugin-import": "^2.17.2",
|
|
|
|
"eslint-plugin-react": "^7.13.0",
|
2018-09-26 21:16:35 -04:00
|
|
|
"intl": "1.2.5",
|
2018-10-31 18:40:27 -04:00
|
|
|
"mkdirp": "^0.5.1",
|
2018-12-03 18:43:11 -05:00
|
|
|
"nets": "^3.2.0",
|
2018-09-26 15:54:08 -04:00
|
|
|
"react": "16.2.0",
|
|
|
|
"react-dom": "16.2.0",
|
2018-09-26 21:16:35 -04:00
|
|
|
"react-intl": "2.4.0",
|
2018-09-26 15:54:08 -04:00
|
|
|
"react-redux": "5.0.7",
|
|
|
|
"redux": "3.7.2",
|
2019-01-08 17:02:19 -05:00
|
|
|
"rimraf": "^2.6.3",
|
2018-12-27 14:05:04 -05:00
|
|
|
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop",
|
2018-12-12 12:05:19 -05:00
|
|
|
"source-map-loader": "^0.2.4",
|
2019-05-13 20:24:50 -04:00
|
|
|
"uglifyjs-webpack-plugin": "^2.1.2",
|
2018-12-03 18:43:11 -05:00
|
|
|
"uuid": "^3.3.2",
|
2019-05-13 20:24:50 -04:00
|
|
|
"webpack": "^4.31.0"
|
2018-02-20 02:44:26 -05:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2018-08-21 03:21:54 -04:00
|
|
|
"upath": "^1.0.5"
|
2018-09-06 14:20:27 -04:00
|
|
|
}
|
|
|
|
}
|