forked from joshwcomeau/beatmapper
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
90 lines (90 loc) · 2.43 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
{
"name": "beatmapper",
"version": "0.3.2",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "biome check --no-errors-on-unmatched",
"ci": "biome ci --no-errors-on-unmatched",
"test": "vitest",
"foo": "echo 'hello';"
},
"dependencies": {
"@mdx-js/react": "^3.1.0",
"@react-spring/three": "^9.7.5",
"@react-spring/web": "^9.7.5",
"@react-three/fiber": "^8.17.10",
"@reduxjs/toolkit": "^2.3.0",
"color": "^4.2.3",
"date-fns": "^4.1.0",
"file-saver": "^2.0.5",
"howler": "^2.2.4",
"immer": "^10.1.1",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"postprocessing": "^6.36.3",
"react": "^18.3.1",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.10",
"react-helmet": "^6.1.0",
"react-icons-kit": "^2.0.0",
"react-outside-click-handler": "^1.3.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"react-tippy": "^1.4.0",
"react-transition-group": "^4.4.5",
"redux-state-sync": "^3.1.4",
"redux-storage": "^4.1.2",
"redux-storage-decorator-debounce": "^1.1.3",
"redux-storage-decorator-filter": "^1.1.8",
"redux-storage-engine-localforage": "^2.0.0",
"redux-thunk": "^3.1.0",
"redux-undo": "^1.1.0",
"rehype-mdx-import-media": "^1.2.0",
"slugify": "^1.6.6",
"styled-components": "^6.1.13",
"three": "^0.169.0",
"three-stdlib": "^2.34.0",
"uuid": "^11.0.2",
"waveform-data": "^4.5.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@mdx-js/rollup": "^3.1.0",
"@types/color": "^4.2.0",
"@types/file-saver": "^2.0.7",
"@types/howler": "^2.2.12",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/react-outside-click-handler": "^1.3.4",
"@types/react-transition-group": "^4.4.11",
"@types/redux-state-sync": "^3.1.10",
"@types/redux-storage": "^4.1.3",
"@types/three": "^0.169.0",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.0.1",
"lefthook": "^1.8.2",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-mdx-toc": "^0.3.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.4"
},
"resolutions": {
"@types/react": "^18",
"redux": "^5"
}
}