forked from scratchfoundation/scratchjr
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.5 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.5 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
{
"name": "@robotical/martyblocksjr",
"version": "4.0.5",
"description": "ScratchJr",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"lint": "eslint src/**",
"watch": "webpack --mode=development --progress --watch",
"dev": "webpack --mode=development --progress",
"build": "webpack --mode=production --progress",
"build-dev": "webpack --mode=development --progress --stats-error-details",
"start": "npx serve --listen tcp://0.0.0.0:3011 ./editions/free/src",
"build:copy": "npm run build-dev && cp -f src/build/bundles/* editions/free/src",
"build-prod:copy": "npm run build && cp -f src/build/bundles/* editions/free/src",
"build:start": "npm run build:copy && npm start",
"test": "vitest",
"test:e2e": "vitest run tests/e2e",
"a11y:structure": "node scripts/a11y-structure.mjs",
"test:e2e-accessibility": "vitest run tests/e2e/accessibility.e2e.test.js",
"a11y:ci": "npm run a11y:structure && npm run test:e2e-accessibility"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/llk/scratchjr/issues"
},
"homepage": "https://github.com/llk/scratchjr",
"devDependencies": {
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.25.4",
"axe-core": "^4.11.2",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^8.2.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-3": "^6.24.1",
"csv-parse": "^5.6.0",
"esformatter": "^0.8.1",
"esformatter-braces": "^1.2.1",
"esformatter-dot-notation": "^1.3.1",
"esformatter-quotes": "^1.0.3",
"esformatter-semicolons": "^1.1.2",
"eslint": "^1.10.3",
"expose-loader": "^3.0.0",
"puppeteer": "^2.1.1",
"strip-sourcemap-loader": "0.0.1",
"vitest": "^4.0.14",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-notifier": "^1.6.0"
},
"dependencies": {
"browserify-fs": "^1.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"file-loader": "^6.2.0",
"filer": "^1.4.1",
"fs-web": "^1.0.1",
"get-user-media-promise": "^1.1.4",
"intl": "^1.0.1",
"intl-messageformat": "^1.2.0",
"jszip": "^2.5.0",
"path-browserify": "^1.0.1",
"semver": "^7.6.3",
"snapsvg": "^0.3.0",
"sql.js": "^1.6.2",
"stream-browserify": "^3.0.0",
"util": "^0.12.4",
"vm-browserify": "^1.1.2",
"wav-encoder": "^1.3.0"
}
}