-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dashflare",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/sukkaw/dashflare"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"dev": "NODE_ENV=development webpack serve --mode development",
"build": "NODE_ENV=production webpack --mode production",
"build:analyze": "ANALYZE=true NODE_ENV=production webpack --mode production",
"lint": "eslint --format=sukka ."
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/server": "^11.11.0",
"@mantine/core": "^6.0.22",
"@mantine/form": "^6.0.22",
"@mantine/hooks": "^6.0.22",
"@mantine/modals": "^6.0.22",
"@mantine/notifications": "^6.0.22",
"@mantine/prism": "^6.0.22",
"@swc/helpers": "^0.5.15",
"@tabler/icons-react": "^3.22.0",
"@tanstack/react-table": "^8.20.5",
"core-js": "^3.39.0",
"date-fns": "^4.1.0",
"foxact": "^0.2.41",
"react": "19.0.0-rc-3edc000d-20240926",
"react-dom": "19.0.0-rc-3edc000d-20240926",
"react-router-dom": "^6.26.2",
"swr": "^2.2.5",
"title": "^3.5.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@eslint-sukka/node": "6.12.0",
"@eslint-sukka/react": "6.12.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@swc/core": "^1.9.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/title": "^3.4.3",
"browserslist": "^4.24.2",
"copy-webpack-plugin": "^12.0.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.15.0",
"eslint-config-sukka": "6.12.0",
"eslint-formatter-sukka": "6.12.0",
"html-webpack-plugin": "^5.6.3",
"lightningcss": "^1.28.1",
"react-refresh": "^0.14.2",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.10",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"has": "npm:@nolyfill/has@latest",
"object-keys": "npm:@nolyfill/object-keys@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"side-channel": "npm:@nolyfill/side-channel@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest"
}
}
}