-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "synthcal",
"description": "A calculator with a synthwave aesthetic",
"version": "1.0.0",
"main": "main.js",
"repository": "https://github.com/ibrahimbutt/synthcal.git",
"author": "Ibrahim Butt <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest --coverage",
"parcel-dev": "parcel ./src/index.html -d build/",
"electron-dev": "ELECTRON_START_URL=http://localhost:1234 electron .",
"dev": "yarn parcel-dev | yarn electron-dev",
"build": "parcel build ./src/index.html -d build/ --public-url ./",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"productName": "SynthCal",
"appId": "com.electron.synthcal",
"copyright": "Copyright © year ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"main.js",
"build/*"
]
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"electron": "^3.0.8",
"electron-builder": "^20.34.0",
"electron-reload": "^1.3.0",
"jest": "^23.6.0",
"normalize.css": "^8.0.1",
"parcel": "^1.10.3",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"styled-components": "^4.1.1"
},
"dependencies": {
"big.js": "^5.2.2",
"react-hot-keys": "^1.2.2"
}
}