-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "audiate",
"version": "0.3.0",
"description": "Annotate audio files with measures",
"homepage": "https://marcnitzsche.de/audiate/",
"keywords": [
"audio",
"music",
"annotation-tool"
],
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "npm run dev",
"start-server": "next start",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.3",
"@mui/icons-material": "^5.4.4",
"@mui/material": "^5.4.4",
"@reduxjs/toolkit": "^1.8.0",
"file-saver": "^2.0.5",
"js2xmlparser": "^4.0.2",
"just-debounce-it": "^3.0.1",
"next": "^12.1.0",
"papaparse": "^5.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "^12.0.4",
"react-hotkeys-hook": "^3.4.4",
"react-redux": "^7.2.6",
"wavesurfer.js": "^6.0.3"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/node": "^17.0.21",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.39",
"@types/wavesurfer.js": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
}
}