-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"name": "escala-score-editor",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**\" --ext .tsx",
"unit-test": "jest \"src/.*\\.unit.test\\.ts\"",
"service-test": "jest \"src/.*\\.service.test\\.ts\"",
"e2e-test": "cypress run",
"cypress-open": "cypress open",
"postinstall": "cp -r ./node_modules/@coderline/alphatab ./public && cp -r ./node_modules/@coderline/alphatab/dist/soundfont/ ./public/alphatab/soundfont/"
},
"dependencies": {
"@coderline/alphatab": "^1.2.3",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.3",
"i18next": "^21.9.2",
"i18next-browser-languagedetector": "^7.0.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"react-usestateref": "^1.0.8"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/jquery": "^3.5.14",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@vitejs/plugin-react": "^2.2.0",
"cypress": "^10.11.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.0",
"jest-mock-extended": "^2.0.6",
"ts-jest": "^28.0.7",
"typescript": "^4.8.2",
"vite": "^3.2.0",
"vite-tsconfig-paths": "^3.5.2"
}
}