-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.07 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
{
"name": "csg-scratch",
"version": "0.0.7",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"dev": "node prebuild.cjs && modern dev",
"build": "node prebuild.cjs && modern build && node postbuild.cjs",
"start": "modern start",
"serve": "modern serve",
"new": "modern new",
"lint": "modern lint",
"prepare": "husky install",
"upgrade": "modern upgrade"
},
"engines": {
"node": ">=16.18.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"@codemirror/autocomplete": "^6.8.0",
"@codemirror/commands": "^6.2.4",
"@codemirror/language": "^6.8.0",
"@codemirror/legacy-modes": "^6.3.2",
"@codemirror/state": "^6.2.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.13.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@modern-js/runtime": "2.27.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "5.0.0-alpha.134",
"@mui/material": "^5.13.5",
"@mui/system": "^5.13.5",
"@uiw/react-codemirror": "^4.21.3",
"lodash": "^4.17.21",
"re-resizable": "^6.9.9",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"scratch-blocks": "0.1.0-prerelease.20230527085947",
"yaml": "^2.3.1"
},
"devDependencies": {
"@modern-js-app/eslint-config": "2.27.0",
"@modern-js/app-tools": "2.27.0",
"@modern-js/builder-rspack-provider": "2.27.0",
"@modern-js/eslint-config": "2.27.0",
"@modern-js/plugin-ssg": "2.27.0",
"@modern-js/tsconfig": "2.27.0",
"@types/jest": "~29.2.4",
"@types/node": "~16.11.7",
"@types/react": "~18.0.26",
"@types/react-dom": "~18.0.10",
"husky": "~8.0.1",
"lint-staged": "~13.1.0",
"prettier": "~2.8.1",
"rimraf": "~3.0.2",
"typescript": "~5.0.4"
}
}