-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
73 lines (73 loc) · 1.78 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "donut",
"version": "2.0.0",
"description": "Cross platform cryptocurrency tracker",
"main": "main.js",
"scripts": {
"setup": "bower install && cd src && npm install && cd .. && gulp setup && install-app-deps ",
"start": "electron ./app",
"pack": "build --dir",
"dist": "build",
"postinstall": "npm run setup"
},
"repository": "https://github.com/harshjv/donut",
"keywords": [
"donut",
"cryptocurrency",
"bitcoin",
"ethereum"
],
"author": {
"name": "Harsh Vakharia",
"email": "[email protected]",
"url": "https://harshjv.github.io"
},
"license": "MIT",
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.3.0",
"bower": "^1.7.9",
"browserify": "^13.1.0",
"bufferutil": "^1.2.1",
"classnames": "^2.2.5",
"electron": "^1.4.1",
"electron-builder": "^7.11.4",
"envify": "^3.4.1",
"flux": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cssnano": "^2.1.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"halogen": "^0.2.0",
"keymirror": "^0.1.1",
"numeral": "^1.5.3",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-search-input": "^0.10.3",
"request": "^2.75.0",
"socket.io-client": "^1.5.0",
"uglifyify": "^3.0.3",
"utf-8-validate": "^1.2.1",
"vinyl-source-stream": "^1.1.0"
},
"build": {
"appId": "com.harshjv.donut",
"productName": "Donut",
"mac": {
"category": "public.app-category.productivity"
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb",
"rpm",
"freebsd",
"zip"
]
}
}
}