-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "site",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": "https://mapsofexile.com",
"scripts": {
"fix": "prettier --write '{*,public/*,src/**,src/**/*,src/**/**/*}.{js,jsx,css,scss,md,html}'",
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"bootstrap": "5.3.3",
"jotai": "^2.10.1",
"react": "^18.3.1",
"react-compiler-runtime": "^19.0.0-beta-8a03594-20241020",
"react-dom": "^18.3.1",
"react-select": "^5.8.2",
"reactflow": "^11.11.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@vitejs/plugin-react": "^4.3.3",
"babel-plugin-react-compiler": "^19.0.0-beta-8a03594-20241020",
"browserslist-to-esbuild": "^2.1.1",
"prettier": "^3.3.3",
"vite": "^5.4.10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}