-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.99 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
{
"name": "minlog-web-editor",
"version": "1.0.0",
"description": "Minlog Web Editor",
"main": "index.js",
"scripts": {
"prepare-chez": "./scripts/prepare-chez.sh",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"eslintConfig": {
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
},
"extends": [
"react-app",
"react-app/jest"
]
},
"author": "Valentin Herrmann",
"license": "Apache-2.0",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.3.2",
"@types/node": "^18",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.4.1",
"browserfs": "^1.4.3",
"buffer": "^6.0.3",
"chez-scheme-js": "file:chez-scheme-js",
"monaco-editor": "^0.33.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-compiler-runtime": "^19.1.0-rc.3",
"react-dom": "^18.2.0",
"react-split-pane": "0.1.77",
"sexpr-plus": "^7.0.0",
"vite-plugin-checker": "^0.9.1",
"vite-plugin-eslint": "^1.8.1"
},
"devDependencies": {
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"html-webpack-plugin": "^5.5.1",
"ts-loader": "^9.4.3",
"typescript": "^5.0.4",
"typescript-eslint": "^8.44.0",
"vite": "^6.3.4",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"worker-loader": "^3.0.8"
}
}