forked from sightread/sightread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "@sightread/app",
"version": "0.8.1",
"private": true,
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@types/bun": "1.0.12",
"@types/fluent-ffmpeg": "2.1.24",
"@types/jest": "29.5.12",
"@types/node": "20.12.5",
"@types/prettier": "3.0.0",
"@types/react": "18.2.74",
"@types/resize-observer-browser": "0.1.11",
"@types/webmidi": "2.0.10",
"autoprefixer": "10.4.19",
"eslint-config-next": "14.1.4",
"eslint": "8.56.0",
"fluent-ffmpeg": "2.1.2",
"jsdom": "24.0.0",
"postcss": "8.4.38",
"prettier-plugin-tailwindcss": "0.5.13",
"prettier": "3.2.5",
"sharp": "0.33.3",
"skia-canvas": "1.0.1",
"swr": "2.2.5",
"tailwindcss": "3.4.3",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.4.4"
},
"dependencies": {
"@radix-ui/react-slider": "1.1.2",
"@radix-ui/react-tooltip": "1.0.7",
"@tonejs/midi": "2.0.28",
"clsx": "2.1.0",
"jotai": "2.7.2",
"jotai-effect": "1.0.0",
"next": "14.1.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "2.0.10",
"tailwind-merge": "2.2.2"
},
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"lint": "next lint",
"format": "prettier --write **/*.{ts,tsx}",
"gen": "cd scripts && ts-node generate.ts && cd ..",
"render": "RENDER=1 ts-node --project scripts/tsconfig.json scripts/render.ts --huge-max-old-generation-size",
"test": "bun test",
"test:watch": "bun test --watch"
},
"browserslist": {
"production": [
">1%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}