forked from scratchfoundation/scratch-desktop
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 3.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "scratch-desktop",
"productName": "Scratch",
"description": "Scratch 3.0 as a self-contained desktop application",
"author": "Scratch Foundation",
"version": "3.30.7",
"license": "BSD-3-Clause",
"scripts": {
"clean": "rimraf ./dist ./static/assets",
"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",
"compile:cpp": "node ./node_modules/node-gyp/bin/node-gyp.js configure build -C ./cpp && cp ./cpp/build/Release/gpiolib.node ./static/ ",
"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",
"dist:rpi": "npm run clean && npm run compile && npm run compile:cpp && npm run fetch && npm run doBuild -- --mode=dist --platform=linux",
"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 .",
"postinstall": "git apply patches/*.patch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/LLK/scratch-desktop.git"
},
"dependencies": {
"source-map-support": "^0.5.19"
},
"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/plugin-transform-nullish-coalescing-operator": "^7.22.5",
"@babel/plugin-transform-optional-chaining": "^7.22.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"async": "^3.2.0",
"autoprefixer": "9.8.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-react-intl": "^7.5.7",
"copy-webpack-plugin": "^5.1.1",
"electron": "^23.3.12",
"electron-builder": "^23.6.0",
"electron-devtools-installer": "^3.2.0",
"electron-installer-debian": "^3.2.0",
"electron-notarize": "^1.1.1",
"electron-store": "^8.0.1",
"electron-webpack": "^2.8.2",
"eslint": "^7.0.0",
"eslint-config-scratch": "^6.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "^7.20.0",
"fs-extra": "^9.0.1",
"intl": "1.2.5",
"lodash.bindall": "^4.4.0",
"lodash.defaultsdeep": "^4.6.1",
"minilog": "^3.1.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"nets": "^3.2.0",
"node-gyp": "^10.0.1",
"postcss-import": "12.0.1",
"postcss-simple-vars": "5.0.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-intl": "2.9.0",
"react-redux": "5.1.2",
"redux": "3.7.2",
"rimraf": "^3.0.2",
"scratch-gui": "github:scratchfoundation/scratch-gui#scratch-desktop-v3.30.1",
"scratch-blocks": "0.2.0-prerelease.20230718081157",
"uuid": "^8.0.0",
"webpack": "^4.43.0",
"webpack-merge": "4.2.2"
},
"resolutions": {
"upath": "^1.0.5"
}
}