-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.55 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
{
"private": true,
"name": "soundboy",
"description": "Sample library classification and exploration tool.",
"version": "1.0.0",
"author": "Jules Youngberg <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:worker": "webpack --config worker/webpack.config.js",
"notebooks": "docker run --rm -p 8889:8888 --mount type=bind,source=$(pwd)/python,target=/notebooks mtgupf/mir-toolbox",
"postinstall": "electron-builder install-app-deps",
"prettier": "prettier --list-different --write './**/*.{j,t}s?(x)'",
"prettier:check": "prettier --check './**/*.{j,t}s?(x)'",
"lint": "tsc --noEmit -P . && eslint './**/*.ts?(x)'",
"lint:fix": "eslint './**/*.ts?(x)' --fix",
"test": "jest"
},
"dependencies": {
"electron-serve": "^1.0.0",
"electron-store": "^6.0.1",
"nedb-promises": "^4.1.0",
"ts-node": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@emotion/babel-preset-css-prop": "^10.2.1",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@rebass/forms": "^4.0.6",
"@rebass/preset": "^4.0.5",
"@tensorflow/tfjs": "^2.7.0",
"@types/jest": "^26.0.15",
"@types/meyda": "^4.3.1",
"@types/node": "^14.14.10",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/rebass": "^4.0.7",
"@types/rebass__forms": "^4.0.4",
"@types/victory": "^33.1.4",
"@types/wavesurfer.js": "^3.3.1",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"audio-loader": "^1.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-emotion": "^10.0.33",
"colormap": "^2.3.1",
"electron": "^10.1.6",
"electron-builder": "^22.9.1",
"emotion-theming": "^10.0.27",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript-prettier": "^3.1.0",
"essentia.js": "^0.1.0",
"glob-promise": "^3.4.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"lodash.throttle": "^4.1.1",
"meyda": "^5.0.8",
"next": "9.3.6",
"nextron": "^5.15.11",
"prettier": "^2.2.0",
"rc-progress": "^3.1.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-icons": "^3.11.0",
"rebass": "^4.0.7",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"tsne-js": "^1.0.3",
"typescript": "^4.1.2",
"victory": "^35.4.0",
"wavesurfer.js": "^4.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"worker-loader": "^3.0.5"
}
}