2018-09-06 14:20:27 -04:00
|
|
|
{
|
|
|
|
"name": "scratch-desktop",
|
2020-08-04 13:43:27 -04:00
|
|
|
"productName": "Scratch",
|
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",
|
2020-08-27 13:54:01 -04:00
|
|
|
"version": "3.15.0",
|
2018-09-06 14:20:27 -04:00
|
|
|
"license": "BSD-3-Clause",
|
2017-08-27 15:15:38 -04:00
|
|
|
"scripts": {
|
2020-08-11 19:21:14 -04:00
|
|
|
"clean": "rimraf ./dist ./static/assets",
|
2020-08-14 16:48:05 -04:00
|
|
|
"start": "mkdirp ./dist && electron-webpack dev --bail --display-error-details --env.minify=false --no-progress",
|
|
|
|
"compile": "mkdirp ./dist && electron-webpack --bail --display-error-details --env.minify=false --no-progress",
|
2018-10-31 18:40:27 -04:00
|
|
|
"fetch": "rimraf ./static/assets/ && mkdirp ./static/assets/ && node ./scripts/fetchMediaLibraryAssets.js",
|
2020-04-03 22:02:26 -04:00
|
|
|
"build": "npm run build:dev",
|
|
|
|
"build:dev": "npm run compile && npm run doBuild -- --mode=dev",
|
|
|
|
"build:dir": "npm run compile && npm run doBuild -- --mode=dir",
|
|
|
|
"build:dist": "npm run compile && npm run doBuild -- --mode=dist",
|
|
|
|
"doBuild": "node ./scripts/electron-builder-wrapper.js",
|
|
|
|
"dist": "npm run clean && npm run compile && npm run fetch && npm run doBuild -- --mode=dist",
|
2020-06-25 19:13:39 -04:00
|
|
|
"distDev": "npm run clean && npm run compile && npm run fetch && npm run doBuild -- --mode=dev",
|
2020-04-03 22:02:26 -04:00
|
|
|
"test": "npm run test:lint",
|
2020-09-01 15:01:53 -04:00
|
|
|
"test: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": {
|
2020-05-13 17:12:10 -04:00
|
|
|
"source-map-support": "^0.5.19"
|
2017-08-27 15:15:38 -04:00
|
|
|
},
|
2018-09-06 14:20:27 -04:00
|
|
|
"devDependencies": {
|
2020-05-13 17:12:10 -04:00
|
|
|
"@babel/core": "^7.9.6",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
|
|
"@babel/plugin-transform-async-to-generator": "^7.8.3",
|
|
|
|
"@babel/preset-env": "^7.9.6",
|
|
|
|
"@babel/preset-react": "^7.9.4",
|
|
|
|
"async": "^3.2.0",
|
|
|
|
"babel-eslint": "^10.1.0",
|
|
|
|
"babel-loader": "^8.1.0",
|
|
|
|
"babel-plugin-react-intl": "^7.5.7",
|
|
|
|
"copy-webpack-plugin": "^5.1.1",
|
2020-05-11 16:14:56 -04:00
|
|
|
"electron": "^8.2.5",
|
2020-05-13 17:12:10 -04:00
|
|
|
"electron-builder": "^22.6.0",
|
|
|
|
"electron-devtools-installer": "^3.0.0",
|
|
|
|
"electron-notarize": "^0.3.0",
|
|
|
|
"electron-store": "^5.1.1",
|
|
|
|
"electron-webpack": "^2.8.2",
|
|
|
|
"eslint": "^7.0.0",
|
|
|
|
"eslint-config-scratch": "^6.0.0",
|
|
|
|
"eslint-plugin-import": "^2.20.0",
|
|
|
|
"eslint-plugin-react": "^7.20.0",
|
2020-08-24 23:20:37 -04:00
|
|
|
"fs-extra": "^9.0.1",
|
2018-09-26 21:16:35 -04:00
|
|
|
"intl": "1.2.5",
|
2019-07-17 20:16:18 -04:00
|
|
|
"lodash.bindall": "^4.4.0",
|
2019-07-17 16:28:22 -04:00
|
|
|
"lodash.defaultsdeep": "^4.6.1",
|
2020-05-20 20:05:00 -04:00
|
|
|
"minilog": "^3.1.0",
|
2020-09-03 19:11:01 -04:00
|
|
|
"minimist": "^1.2.5",
|
2020-05-13 17:12:10 -04:00
|
|
|
"mkdirp": "^1.0.4",
|
2018-12-03 18:43:11 -05:00
|
|
|
"nets": "^3.2.0",
|
2018-09-26 15:54:08 -04:00
|
|
|
"react": "16.2.0",
|
2019-11-01 19:03:52 -04:00
|
|
|
"react-dom": "16.2.1",
|
2020-08-10 21:50:14 -04:00
|
|
|
"react-intl": "2.9.0",
|
2018-09-26 15:54:08 -04:00
|
|
|
"react-redux": "5.0.7",
|
2020-08-10 21:50:14 -04:00
|
|
|
"redux": "3.7.2",
|
2020-05-13 17:12:10 -04:00
|
|
|
"rimraf": "^3.0.2",
|
2020-09-29 18:38:18 -04:00
|
|
|
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop-v3.16.0",
|
2020-05-13 17:12:10 -04:00
|
|
|
"uuid": "^8.0.0",
|
|
|
|
"webpack": "^4.43.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
|
|
|
}
|
|
|
|
}
|