-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.88 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": "spectro",
"version": "1.0.0",
"description": "Real-time audio spectrogram generator for the web.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"start": "webpack serve --mode=development",
"prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"type-check": "tsc"
},
"author": "Caleb Joseph (https://github.com/calebj0seph)",
"license": "MIT",
"homepage": "https://github.com/calebj0seph/spectro",
"bugs": "https://github.com/calebj0seph/spectro/issues",
"repository": {
"type": "git",
"url": "https://github.com/calebj0seph/spectro.git"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@types/lodash.debounce": "^4.0.6",
"@types/react-dom": "^17.0.2",
"@types/webpack": "^4.41.26",
"jsfft": "0.0.4",
"lodash.debounce": "^4.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"babel-loader": "^8.2.2",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-restricted-globals": "^0.2.0",
"prettier": "^2.2.1",
"typescript": "^3.7.7",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-glsl-minify": "^1.4.2",
"worker-loader": "^3.0.8"
}
}