-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "flashchords",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3005",
"build": "next build",
"export": "npm run build && next export -o _static",
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.1",
"@mui/material": "^6.4.0",
"@mui/material-nextjs": "^6.3.1",
"lodash": "^4.17.21",
"next": "^15.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"smplr": "^0.16.1",
"swr": "^2.2.5",
"vexflow": "^4.2.5",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "22.10.10",
"@types/react": "^18.3.12",
"@types/react-dom": "18.3.1",
"@types/webmidi": "^2.1.0",
"eslint": "8.51.0",
"eslint-config-next": "^15.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-mocks-http": "^1.16.2",
"ts-jest": "^29.2.5",
"typescript": "5.7.2",
"typescript-plugin-css-modules": "^5.1.0"
}
}