-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.16 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
{
"name": "repo-review-webapp",
"private": true,
"version": "1.0.3",
"type": "module",
"scripts": {
"build": "bunx esbuild src/repo-review-app/repo-review-app.tsx --bundle --minify --sourcemap --outfile=docs/_static/scripts/repo-review-app.min.js --platform=browser --format=esm",
"build-html": "bun build src/repo-review-app/index.html --outdir=out --minify",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"serve": "bun src/repo-review-app/index.html",
"test": "bun test",
"type": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"dependencies": {
"pyodide": "^0.29.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@mui/material": "^7.3.9",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1"
}
}