scratch-desktop/package.json

74 lines
2.7 KiB
JSON
Raw Normal View History

2018-09-06 14:20:27 -04:00
{
"name": "scratch-desktop",
"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": {
"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",
"fetch": "rimraf ./static/assets/ && mkdirp ./static/assets/ && node ./scripts/fetchMediaLibraryAssets.js",
"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",
"distDev": "npm run clean && npm run compile && npm run fetch && npm run doBuild -- --mode=dev",
"test": "npm run test:lint",
"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": {
"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",
"fs-extra": "^9.0.1",
"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",
2020-09-03 19:11:01 -04:00
"minimist": "^1.2.5",
"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",
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",
"rimraf": "^3.0.2",
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop-v3.16.0",
"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
}
}