You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
3.1 KiB
JSON
94 lines
3.1 KiB
JSON
{
|
|
"name": "lean4-game",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"homepage": ".",
|
|
"dependencies": {
|
|
"@emotion/react": "^11.10.5",
|
|
"@emotion/styled": "^11.10.5",
|
|
"@fontsource/roboto": "^4.5.8",
|
|
"@fontsource/roboto-mono": "^4.5.8",
|
|
"@mui/icons-material": "^5.11.0",
|
|
"@mui/material": "^5.11.1",
|
|
"@reduxjs/toolkit": "^1.9.1",
|
|
"@types/cytoscape": "^3.19.9",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"cross-env": "^7.0.3",
|
|
"cytoscape": "^3.23.0",
|
|
"cytoscape-elk": "^2.1.0",
|
|
"cytoscape-klay": "^3.1.4",
|
|
"debounce": "^1.2.1",
|
|
"express": "^4.18.2",
|
|
"lean4-infoview": "https://gitpkg.now.sh/leanprover/vscode-lean4/lean4-infoview?de0062c",
|
|
"lean4web": "github:hhu-adam/lean4web",
|
|
"octokit": "^2.0.14",
|
|
"path-browserify": "^1.0.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-markdown": "^8.0.4",
|
|
"react-redux": "^8.0.5",
|
|
"react-router-dom": "^6.5.0",
|
|
"react-split": "^2.0.14",
|
|
"rehype-katex": "^6.0.2",
|
|
"remark-gfm": "^3.0.1",
|
|
"remark-math": "^5.1.1",
|
|
"request": "^2.88.2",
|
|
"request-progress": "^3.0.0",
|
|
"vscode-ws-jsonrpc": "^2.0.1",
|
|
"web-worker": "^1.2.0",
|
|
"ws": "^8.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.19.3",
|
|
"@babel/core": "^7.20.5",
|
|
"@babel/preset-env": "^7.20.2",
|
|
"@babel/preset-react": "^7.18.6",
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
|
|
"@redux-devtools/core": "^3.13.1",
|
|
"@testing-library/react": "^13.4.0",
|
|
"babel-loader": "^8.3.0",
|
|
"concurrently": "^7.6.0",
|
|
"css-loader": "^6.7.3",
|
|
"file-loader": "^6.2.0",
|
|
"nodemon": "^2.0.20",
|
|
"react-refresh": "^0.14.0",
|
|
"style-loader": "^3.3.1",
|
|
"ts-loader": "^9.4.2",
|
|
"typescript": "^4.9.4",
|
|
"url-loader": "^4.1.1",
|
|
"webpack": "^5.75.0",
|
|
"webpack-cli": "^4.10.0",
|
|
"webpack-dev-server": "^4.11.1",
|
|
"webpack-shell-plugin-next": "^2.3.1"
|
|
},
|
|
"scripts": {
|
|
"start": "concurrently -n server,client -c blue,green \"npm run start_server\" \"npm run start_client\"",
|
|
"start_server": "cd server && lake build && cross-env NODE_ENV=development nodemon -e mjs --exec \"node ./index.mjs\"",
|
|
"start_client": "cross-env NODE_ENV=development webpack-dev-server --hot",
|
|
"build": "cross-env NODE_ENV=production webpack",
|
|
"production": "cross-env NODE_ENV=production node server/index.mjs",
|
|
"build_robo": "rm -rf ./Robo && git clone https://github.com/hhu-adam/Robo && docker build ./Robo --file ./Robo/Dockerfile --tag g/hhu-adam/robo && rm -rf ./Robo",
|
|
"build_nng": "rm -rf ./NNG4 && git clone https://github.com/hhu-adam/NNG4 && docker build ./NNG4 --file ./NNG4/Dockerfile --tag g/hhu-adam/nng4 && rm -rf ./NNG4",
|
|
"update_lean": "./UPDATE_LEAN.sh"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|