-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.85 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
{
"name": "open-code-review-landing",
"version": "1.0.0",
"description": "Landing page for Open Code Review",
"type": "module",
"scripts": {
"dev": "webpack serve",
"build": "NODE_ENV=production webpack --mode production",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "eslint src/",
"size": "size-limit"
},
"dependencies": {
"@agentscope-ai/icons": "^1.0.68",
"dompurify": "^3.4.11",
"marked": "^18.0.5",
"mermaid": "^11.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"three": "^0.185.0"
},
"overrides": {
"fast-uri": "^3.1.2"
},
"size-limit": [
{
"path": "dist/*.bundle.js",
"limit": "150 kB"
}
],
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.29.5",
"@babel/preset-react": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@eslint/js": "^10.0.1",
"@size-limit/file": "^13.0.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/three": "^0.185.0",
"@vitejs/plugin-react": "^6.0.4",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^6.8.1",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"html-webpack-plugin": "^5.5.3",
"jsdom": "^30.0.0",
"postcss": "^8.5.15",
"postcss-loader": "^7.3.3",
"serve": "^14.2.6",
"size-limit": "^13.0.1",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.4"
}
}