-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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": "idleon-toolbox",
"version": "0.1.0",
"private": true,
"module": "es6",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "next dev --port=3001",
"build": "next build",
"start": "npx serve@latest out",
"postbuild": "node utility/generate-sitemap.mjs",
"test": "vitest run",
"test:e2e": "node e2e/generate-specs.js && npx playwright test",
"lint": "next lint",
"prepare": "husky || true"
},
"dependencies": {
"@ctrl/react-adsense": "^1.7.0",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mantine/hooks": "^7.17.0",
"@mui/icons-material": "^6.4.1",
"@mui/lab": "^6.0.0-beta.24",
"@mui/material": "^6.4.1",
"@nivo/bar": "^0.99.0",
"@nivo/core": "^0.99.0",
"@nivo/pie": "^0.99.0",
"@tabler/icons-react": "^3.30.0",
"@tanstack/react-query": "^5.96.2",
"@types/react": "^19.2.2",
"core-js": "^3.39.0",
"date-fns": "^2.28.0",
"firebase": "^9.22.0",
"flubber": "^0.4.2",
"framer-motion": "^12.23.24",
"globby": "^14.0.0",
"hast-util-to-jsx-runtime": "^2.3.6",
"husky": "^9.0.11",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"next": "16.2",
"next-seo": "^5.15.0",
"react": "^19.2.4",
"react-cookie-consent": "^9.0.0",
"react-countdown-circle-timer": "^3.0.9",
"react-dom": "^19.2.4",
"react-process-string": "^1.2.0",
"react-syntax-highlighter": "^15.6.1",
"react-transition-group": "^4.4.5",
"typescript": "^5.9.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^24.9.2",
"@vitest/coverage-v8": "^3.2.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.38.0",
"eslint-config-next": "^16.0.1",
"jsdom": "^26.0.0",
"ts-node": "^10.9.2",
"vitest": "^3.2.1"
}
}