-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "react-vite",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "biome lint ./src",
"fix": "biome lint --write ./src",
"fmt": "biome format --write ./src",
"test": "vitest run",
"test:updateSnapshot": "npm run test -- --u",
"test:watch": "vitest watch",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release"
},
"dependencies": {
"@heroicons/react": "2.1.1",
"@monaco-editor/react": "4.6.0",
"@vanilla-extract/css": "1.14.1",
"@vitejs/plugin-react": "4.2.1",
"html-react-parser": "5.1.8",
"htmlhint": "1.1.4",
"jotai": "2.7.0",
"lodash": "4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.22.3",
"reactflow": "11.10.4",
"recharts": "2.12.2",
"recoil": "0.7.7",
"vite": "5.1.5",
"vite-plugin-checker": "0.6.4",
"vite-tsconfig-paths": "4.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/htmlhint": "1.1.5",
"@types/lodash": "4.14.202",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@vanilla-extract/vite-plugin": "4.0.5",
"assemblyscript": "0.27.24",
"autoprefixer": "10.4.18",
"daisyui": "4.7.2",
"jsdom": "24.0.0",
"postcss": "8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.12",
"tailwindcss": "3.4.1",
"ts-jest": "29.1.2",
"typescript": "5.4.2",
"vite-plugin-top-level-await": "1.4.1",
"vite-plugin-wasm": "3.3.0",
"vitest": "1.3.1"
}
}