-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.18 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
66
67
68
69
70
{
"name": "oklex-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"start:runtime": "cross-env CONFIG=${npm_config_runtime:-default} VITE_CONFIG_KEY=${npm_config_runtime:-default} VITE_ENV=development vite",
"start": "npm run start:runtime --",
"dev": "npm run start:runtime --",
"build": "cross-env CONFIG=${npm_config_runtime:-default} VITE_CONFIG_KEY=${npm_config_runtime:-default} VITE_ENV=production vite build",
"preview": "vite preview"
},
"dependencies": {
"@mantine/colors-generator": "^7.17.5",
"@mantine/core": "^8.1.3",
"@mantine/dates": "^8.1.3",
"@mantine/form": "^7.17.5",
"@mantine/hooks": "^8.1.3",
"@mantine/notifications": "^7.17.5",
"@mantine/utils": "^6.0.22",
"@mantinex/dev-icons": "^2.0.0",
"@mantinex/mantine-logo": "^2.0.0",
"@tabler/icons-react": "^3.34.0",
"@tanstack/react-query": "^5.75.0",
"chroma-js": "^3.1.2",
"cross-env": "^7.0.3",
"dagre": "^0.8.5",
"dayjs": "^1.11.13",
"firebase": "^11.10.0",
"popmotion": "^11.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^7.6.3",
"sass": "^1.89.2",
"workbox-build": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/chroma-js": "^3.1.1",
"@types/dagre": "^0.7.52",
"@types/node": "^22.15.3",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.7",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^3.9.0",
"eslint": "^9.25.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"postcss": "^8.5.3",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"vite": "^6.3.4",
"vite-plugin-pwa": "^0.21.2"
},
"volta": {
"node": "23.6.0"
}
}