scratch-desktop/package.json

71 lines
2.5 KiB
JSON
Raw Normal View History

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",
2020-06-22 13:46:31 -04:00
"version": "3.12.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",
"build-gui": "node ./scripts/run-in-gui.js build",
"watch-gui": "node ./scripts/run-in-gui.js watch",
2020-01-13 22:11:56 -05:00
"delete-gui": "rimraf ./node_modules/scratch-gui",
"install-gui": "cd ./node_modules/scratch-gui && npm i",
"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",
2019-09-11 21:46:28 -04:00
"dist": "npm run build-gui && npm run fetch && npm run compile -p && node ./scripts/electron-builder-wrapper.js",
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": {
"source-map-support": "^0.5.19"
2017-08-27 15:15:38 -04:00
},
2018-09-06 14:20:27 -04:00
"devDependencies": {
"@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",
"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",
"intl": "1.2.5",
2019-07-17 20:16:18 -04:00
"lodash.bindall": "^4.4.0",
"lodash.defaultsdeep": "^4.6.1",
"minilog": "^3.1.0",
"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",
"react-dom": "16.2.1",
"react-intl": "2.8.0",
2018-09-26 15:54:08 -04:00
"react-redux": "5.0.7",
"redux": "3.5.2",
"rimraf": "^3.0.2",
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop",
2018-12-12 12:05:19 -05:00
"source-map-loader": "^0.2.4",
"uuid": "^8.0.0",
"webpack": "^4.43.0"
},
"resolutions": {
2018-08-21 03:21:54 -04:00
"upath": "^1.0.5"
2018-09-06 14:20:27 -04:00
}
}