-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "datarice",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"clean": "rimraf ./.next/ ./node_modules/ && npm ci",
"build": "next build",
"export": "next export",
"lint": "next lint",
"lint:fix": "next lint --fix",
"continuous_write": "node scripts/continuous_write.mjs",
"test": ""
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"antd": "^5.6.4",
"chokidar": "^3.5.3",
"dayjs": "^1.11.9",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"immer": "^10.0.2",
"next": "13.2.3",
"node-tail": "^0.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.32.4",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"swr": "^2.1.4",
"uuid": "^9.0.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz",
"zustand": "^4.3.9"
},
"devDependencies": {
"@types/react": "18.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.7.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
}
}