-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
{
"name": "@aliceo2/test-react-webapp",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"docker:typecheck": "docker compose exec webapp npm run typecheck",
"mocha": "tsx node_modules/.bin/mocha --timeout 40000 --require test/mocha-index.ts test/**/*.spec.ts",
"eslint": "eslint app/**",
"eslint-fix": "eslint --fix app/**",
"prettier": "prettier --write app/**",
"prettier-check": "prettier --check app/**"
},
"dependencies": {
"@aliceo2/web-ui": "^2.7.4",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^7.3.5",
"@mui/material": "^7.3.5",
"@react-router/node": "7.5.3",
"@tanstack/query-sync-storage-persister": "^5.80.7",
"@tanstack/react-query": "^5.80.7",
"@tanstack/react-query-persist-client": "^5.80.7",
"axios": "^1.13.5",
"isbot": "^5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.67.0",
"react-router": "7.5.3"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@react-router/dev": "7.5.3",
"@stylistic/eslint-plugin": "^4.4.1",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"eslint": "^9.28.0",
"eslint-plugin-jsdoc": "^50.7.1",
"eslint-plugin-mocha": "^11.1.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.2.0",
"mocha": "^11.7.1",
"prettier": "3.5.3",
"puppeteer": "^24.18.0",
"tsx": "^4.20.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.34.0",
"vite": "^6.4.2",
"vite-tsconfig-paths": "^5.1.4"
}
}