-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.42 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.42 KB
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
80
81
82
83
84
85
86
87
88
{
"name": "samplepad-editor",
"productName": "SamplePad Kit Editor",
"description": "Build drum kits for the Alesis SamplePad",
"author": "Ryan Bateman",
"version": "0.7.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"build": {
"appId": "com.electron.samplepadeditor",
"productName": "SamplePad Kit Editor",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.music"
},
"linux": {
"target": "tar.gz"
}
},
"resolutions": {
"react-dev-utils": "10.1.0"
},
"dependencies": {
"@craco/craco": "^5.6.3",
"electron-is-dev": "^1.1.0",
"electron-store": "^6.0.0",
"immutability-helper": "^3.0.1",
"node-sass-chokidar": "^1.4.0",
"rc-slider": "^9.3.1",
"react": "^16.12.0",
"react-dev-utils": "10.2.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.12.0",
"react-redux": "^7.1.0",
"react-scripts": "3.4.3",
"react-simple-popover": "^0.2.4",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"uuid": "^8.3.0",
"wavefile": "^11.0.0",
"webmidi": "^2.5.1"
},
"devDependencies": {
"concurrently": "^5.0.2",
"electron": "10.1.3",
"electron-builder": "^22.8.0",
"electron-rebuild": "^1.10.0",
"wait-on": "^5.2.0",
"yarn-run-all": "^3.1.1"
},
"scripts": {
"preelectron-pack": "yarn run build",
"electron-pack": "electron-builder build -l -m -w -c.extraMetadata.main=build/electron.js",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "electron-builder install-app-deps",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "yarn run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "npm-run-all -p watch-css start-react",
"build": "npm-run-all -s build-css build-react",
"start-react": "react-scripts start",
"build-react": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}