-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.04 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.04 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
{
"name": "opensist",
"version": "0.1.0b",
"private": true,
"type": "module",
"dependencies": {
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-brands-svg-icons": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
"@fortawesome/react-fontawesome": "^3.3.1",
"@mdxeditor/editor": "^4.0.1",
"@mui/icons-material": "^7.0.0",
"@mui/material": "^7.0.0",
"@mui/x-date-pickers": "^8.0.0",
"antd": "^5.26.3",
"d3": "^7.9.0",
"dayjs": "1.11.10",
"localforage": "1.10.0",
"react": "18.2.0",
"react-css-theme-switcher": "0.3.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-draggable": "4.4.6",
"react-markdown": "9.0.1",
"react-router-dom": "6.21.1",
"react-virtuoso": "^4.13.0",
"remark-gfm": "2.0.0",
"zod": "3.22.4"
},
"scripts": {
"start:alpha": "dotenv -e env/local -e env/alpha -- vite",
"start:beta": "dotenv -e env/local -e env/beta -- vite",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "npm run lint && npm run typecheck && vite build",
"build:alpha": "dotenv -e env/alpha -- npm run build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^17.0.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.0.0",
"vite": "^8.0.0",
"vite-plugin-svgr": "^5.2.0"
}
}