Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
grasscutters
GitHub Repository: grasscutters/grasscutter
Path: blob/development/src/handbook/package.json
3154 views
1
{
2
"name": "handbook",
3
"description": "The ultimate anime game handbook!",
4
"version": "0.1.0",
5
6
"type": "module",
7
"scripts": {
8
"dev": "vite",
9
"build": "tsc && vite build",
10
"preview": "vite preview",
11
12
"postinstall": "npx patch-package",
13
"lint": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\""
14
},
15
16
"dependencies": {
17
"react": "^18.2.0",
18
"react-dom": "^18.2.0",
19
"react-icons": "^4.8.0",
20
"react-d3-tree": "^3.6.1",
21
"react-collapsible": "^2.10.0",
22
"react-virtualized": "^9.22.3",
23
24
"events": "^3.3.0"
25
},
26
"devDependencies": {
27
"typescript": "^4.9.3",
28
"@types/react": "^18.0.28",
29
"@types/react-dom": "^18.0.11",
30
"@types/react-virtualized": "^9.21.21",
31
"@types/events": "^3.0.0",
32
33
"vite": "^4.2.0",
34
"vite-plugin-svgr": "^2.4.0",
35
"vite-tsconfig-paths": "^4.0.7",
36
"vite-plugin-singlefile": "^0.13.5",
37
"@vitejs/plugin-react-swc": "^3.0.0",
38
"@rollup/plugin-dsv": "^3.0.2",
39
40
"sass": "^1.58.3",
41
"cssnano": "^5.1.15",
42
"tailwindcss": "^3.2.7",
43
"autoprefixer": "^10.4.13",
44
45
"postcss": "^8.4.21",
46
"postcss-load-config": "^4.0.1",
47
"postcss-font-magician": "^3.0.0",
48
49
"prettier": "^2.8.7",
50
"patch-package": "^6.5.1"
51
}
52
}
53
54