-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.89 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "scratchpad",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"exchange-rates": "node tools/exchangeRates.mjs",
"dev": "yarn exchange-rates && vite",
"build": "yarn exchange-rates && tsc && vite build",
"lint": "eslint ./src",
"test": "vitest",
"test:ci": "vitest run --coverage",
"preview": "vite preview"
},
"dependencies": {
"@babel/parser": "^7.25.6",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/styled-system": "^2.9.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.0",
"@react-oauth/google": "^0.12.1",
"@stylistic/eslint-plugin": "^2.8.0",
"axios": "^1.7.7",
"chakra-ui-contextmenu": "^1.0.5",
"clsx": "^2.1.1",
"framer-motion": "^11.5.6",
"hexy": "^0.3.5",
"jotai": "^2.10.0",
"js-base64": "^3.7.7",
"mathjs": "^13.1.1",
"pluralize": "^8.0.0",
"prettier": "^3.3.3",
"prismjs": "^1.29.0",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.0.13",
"react-ga4": "^2.1.0",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.2",
"react-simple-code-editor": "^0.14.1",
"react-use": "^17.5.1",
"web-vitals": "^4.2.3"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.9.1",
"@types/pluralize": "^0.0.33",
"@types/prismjs": "^1.26.4",
"@types/ramda": "^0.30.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.1",
"chalk": "^5.3.0",
"eslint": "9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-testing-library": "^6.3.0",
"globals": "^15.9.0",
"typescript": "^5.6.2",
"vite": "^5.4.7",
"vitest": "^2.1.1",
"xml2js": "^0.6.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}