-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.49 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
{
"name": "beatronome.one",
"homepage": "https://throni3git.github.io/bnn",
"version": "0.1.0",
"description": "simple drum computer",
"main": "start-electron.js",
"scripts": {
"start": "webpack serve --mode=development --config=webpack.config.dev.ts",
"dist": "webpack --mode=production",
"deploy": "yarn run dist && gh-pages -d dist",
"electron-run": "electron ./start-electron.js",
"electron-linux": "electron-packager . beatronome-one --overwrite --arch=x64 --icon=assets/images/favicon64.png --prune=true --ignore=node_modules/ --out=release-builds",
"electron-win": "electron-packager . beatronome-one --overwrite --arch=ia32 --platform=win32 --icon=assets/images/winicon.ico --asar --prune=true --ignore=node_modules/ --out=release-builds",
"electron-mac": "electron-packager . beatronome-one --overwrite --arch=x64 --icon=assets/images/favicon64.png --asar --prune=true --ignore=node_modules/ --out=release-builds",
"electron-all": "yarn electron-linux && yarn electron-win && yarn electron-mac",
"render-icons": "npx @svgr/cli -d ./src/icons/ ./raw-assets/concept/bounce/ --typescript --replace-attr-values \"#4d4d4d=currentColor\""
},
"keywords": [
"audio",
"drum computer"
],
"author": "Thomas Thron <[email protected]>",
"license": "ISC",
"devDependencies": {
"@svgr/cli": "^5.5.0",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/html-webpack-plugin": "^3.2.5",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.3",
"@types/workbox-webpack-plugin": "^5.1.6",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^8.1.1",
"electron": "^15.5.5",
"electron-packager": "^15.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"ts-loader": "^9.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"o9n": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-range": "^1.8.7",
"standardized-audio-context": "^25.1.16",
"styled-components": "^5.2.3"
}
}