-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "ponyfication",
"version": "0.0.1",
"description": "Simple notification center for Pony information",
"main": "main.js",
"scripts": {
"start": "electron .",
"watchify": "watchify --debug app/index.js -o build/bundle.js -v -d",
"lint": "./node_modules/.bin/eslint .",
"build": "electron-packager main.js --out=dist --app-version=$npm_package_version --prune --asar --overwrite --all"
},
"author": "Nathan DAMIE",
"license": "MIT",
"devDependencies": {
"browserify": "^13.0.0",
"electron-connect": "^0.3.7",
"electron-packager": "^7.0.0",
"electron-prebuilt": "^0.37.6",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"firebase": "^2.4.2",
"gulp": "^3.9.1",
"react": "^0.13.3",
"reactify": "^1.1.1",
"simplemde": "^1.10.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"dependencies": {
"envify": "^3.4.0",
"feedparser": "^1.1.4",
"gulp-concat-css": "^2.2.0",
"gulp-watch": "^4.3.5",
"node-jsx": "^0.13.3",
"react-dom": "^15.0.1",
"reactfire": "^0.7.0",
"request": "^2.72.0"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}