-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "pix",
"productName": "Pix",
"version": "0.0.0",
"description": "My terrific app",
"license": "MIT",
"repository": "jenstitterness/pix",
"author": {
"name": "Jens Titterness",
"email": "jenstitterness@gmail.com",
"url": "jenstitterness.com"
},
"engines": {
"node": ">=4"
},
"electronVersion": "0.33.3",
"scripts": {
"test": "xo",
"build": "export NODE_ENV='production'; electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --prune --asar --all --version=$npm_package_electronVersion",
"build-sass": "node-sass --include-path src/styles --source-map index.map src/styles/index.scss index.css",
"watch-sass": "nodemon -e scss -x \"npm run build-sass\"",
"start": "export NODE_ENV='dev'; electron . & webpack --watch --progress --colors --output-source-map-file & npm run watch-sass"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app"
],
"dependencies": {
"electron-debug": "^0.2.1",
"jquery": "^2.1.4",
"lodash": "^3.10.1",
"needle": "^0.10.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"request": "^2.65.0"
},
"devDependencies": {
"node-sass": "^3.3.3",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"browser-sync": "^2.9.6",
"browser-sync-webpack-plugin": "^1.0.0",
"css-loader": "^0.19.0",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"nodemon": "^1.7.0",
"electron-packager": "^5.0.0",
"electron-prebuilt": "^0.33.3",
"xo": "^0.9.0",
"react": "^0.14.0",
"react-tap-event-plugin": "0.2.0",
"material-ui": "0.12.4"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}