-
Notifications
You must be signed in to change notification settings - Fork 236
/
package.json
80 lines (80 loc) · 2.95 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
{
"name": "scratch-desktop",
"productName": "Scratch",
"description": "Scratch 3.0 as a self-contained desktop application",
"author": "Scratch Foundation",
"version": "3.30.5",
"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",
"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 ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/scratchfoundation/scratch-desktop.git"
},
"dependencies": {
"source-map-support": "0.5.19"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "7.25.9",
"@babel/plugin-transform-optional-chaining": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"async": "3.2.6",
"autoprefixer": "9.8.8",
"babel-eslint": "10.1.0",
"babel-loader": "8.4.1",
"babel-plugin-react-intl": "7.9.4",
"copy-webpack-plugin": "5.1.2",
"css-loader": "1.0.1",
"electron": "23.3.13",
"electron-builder": "22.14.13",
"electron-devtools-installer": "3.2.0",
"electron-notarize": "1.2.2",
"electron-store": "8.2.0",
"electron-webpack": "2.8.2",
"eslint": "8.57.1",
"eslint-config-scratch": "9.0.9",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.2",
"fs-extra": "9.1.0",
"intl": "1.2.5",
"lodash.bindall": "4.4.0",
"lodash.defaultsdeep": "4.6.1",
"minilog": "3.1.0",
"minimist": "1.2.8",
"mkdirp": "1.0.4",
"nets": "3.2.0",
"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",
"uuid": "8.3.2",
"webpack": "4.47.0",
"webpack-merge": "4.2.2"
},
"resolutions": {
"upath": "1.2.0"
}
}