-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "pianoforte",
"version": "0.1.1",
"author": {
"name": "Aayush Kapoor",
"email": "[email protected]",
"url": "https://xeoneux.github.io"
},
"main": "public/electron.js",
"homepage": "./",
"description": "A web based MIDI player",
"repository": {
"type": "git",
"url": "https://github.com/xeoneux/pianoforte.git"
},
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome": "^1.1.4",
"@fortawesome/fontawesome-free-brands": "^5.0.8",
"@fortawesome/fontawesome-free-regular": "^5.0.8",
"@fortawesome/fontawesome-free-solid": "^5.0.8",
"electron-is-dev": "^0.3.0",
"glamor": "^2.20.40",
"glamorous": "^4.12.1",
"midiate": "^1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.9",
"soundfont-player": "^0.10.6",
"unstated": "^1.1.0"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prerelease": "yarn build",
"release": "build -mwl"
},
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^20.6.2",
"flow-bin": "^0.69.0",
"gh-pages": "^1.1.0",
"react-scripts": "^1.1.4"
},
"build": {
"appId": "com.xeoneux.pianoforte",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}