-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 KB
/
package.json
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
{
"name": "gitproxy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.25.9",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/base": "^5.0.0-beta.62",
"@mui/docs": "^6.1.8",
"@mui/icons-material": "^6.1.8",
"@mui/internal-markdown": "^1.0.20",
"@mui/material": "^6.1.8",
"@mui/utils": "^6.1.8",
"@types/file-saver": "^2.0.7",
"babel-preset-react-app": "^10.0.1",
"clipboard-copy": "^4.0.1",
"file-saver": "^2.0.5",
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.96.1"
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
],
"presets": [
"react-app"
]
}
}