-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "undata",
"version": "0.1.0",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "biome lint ./src",
"format": "biome format --write .",
"precommit": "pnpm format && pnpm lint"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mantine/core": "^7.10.0",
"@mantine/dropzone": "^7.10.0",
"@mantine/form": "^7.10.0",
"@mantine/hooks": "^7.10.0",
"@mantine/modals": "^7.10.0",
"@monaco-editor/react": "^4.6.0",
"@tabler/icons-react": "^3.5.0",
"@tanstack/react-table": "^8.17.3",
"date-fns": "^3.6.0",
"json-2-csv": "^5.5.1",
"monaco-editor": "^0.48.0",
"next": "^14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.3.3"
}
}