forked from scratchfoundation/scratch-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.27 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.27 KB
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
86
87
88
89
90
91
92
93
94
{
"name": "scratch-desktop",
"productName": "Scratch",
"description": "Scratch 3.0 as a self-contained desktop application",
"author": "Scratch Foundation",
"version": "3.31.1",
"license": "AGPL-3.0-only",
"main": "./dist/main/main.js",
"scripts": {
"clean": "rimraf ./dist ./static/fetched",
"start": "node scripts/start.js",
"compile:renderer": "webpack --config webpack.renderer.js",
"compile:main": "webpack --config webpack.main.js",
"compile": "npm run compile:renderer && npm run compile:main",
"fetch": "rimraf ./static/fetched/ && mkdirp ./static/fetched/ && node ./scripts/fetchMediaLibraryAssets.js",
"build": "npm run build:dev",
"build:dev": "cross-env NODE_ENV=production npm run compile && npm run doBuild -- --mode=dev",
"build:dir": "cross-env NODE_ENV=production npm run compile && npm run doBuild -- --mode=dir",
"build:dist": "cross-env NODE_ENV=production npm run compile && npm run doBuild -- --mode=dist",
"doBuild": "node ./scripts/electron-builder-wrapper.js",
"dist": "npm run clean && npm run fetch && npm run build:dist",
"distDev": "npm run clean && npm run fetch && npm run build:dev",
"test": "npm run test:lint",
"test:lint": "eslint --cache --color --ext .jsx,.js ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/scratchfoundation/scratch-desktop.git"
},
"dependencies": {
"source-map-support": "0.5.19"
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.27.1",
"@babel/plugin-transform-nullish-coalescing-operator": "7.27.1",
"@babel/plugin-transform-optional-chaining": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-react": "7.28.5",
"@scratch/scratch-gui": "11.6.0",
"async": "3.2.6",
"autoprefixer": "10.4.21",
"babel-eslint": "10.1.0",
"babel-loader": "9.2.1",
"babel-plugin-react-intl": "7.9.4",
"chalk": "4.1.2",
"copy-webpack-plugin": "6.4.1",
"cross-env": "7.0.3",
"css-loader": "5.2.7",
"electron": "25.9.8",
"electron-builder": "26.0.12",
"electron-devtools-installer": "3.2.1",
"electron-notarize": "1.2.2",
"electron-store": "8.2.0",
"eslint": "8.57.1",
"eslint-config-scratch": "9.0.9",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"fs-extra": "9.1.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "5.6.4",
"intl": "1.2.5",
"lodash.bindall": "4.4.0",
"lodash.defaultsdeep": "4.6.1",
"lodash.omit": "4.5.0",
"mini-css-extract-plugin": "1.6.2",
"minilog": "3.1.0",
"minimist": "1.2.8",
"mkdirp": "1.0.4",
"nets": "3.2.0",
"postcss-import": "12.0.1",
"postcss-loader": "4.3.0",
"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",
"style-loader": "4.0.0",
"url-loader": "4.1.1",
"uuid": "8.3.2",
"wait-on": "8.0.5",
"webpack": "5.102.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.2",
"webpack-merge": "4.2.2"
},
"resolutions": {
"upath": "1.2.0"
}
}