-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
58 lines (58 loc) · 2.13 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
{
"name": "Fastlane",
"author": "Pontus Abrahamsson",
"homepage": "http://fastlaneapp.co",
"version": "0.5.1",
"main": "desktop.js",
"private": true,
"scripts": {
"dev": "webpack --config webpack.dev.config.js & node index.js",
"desktop": "webpack --config webpack.prod.config.js && electron desktop.js",
"lint": "./node_modules/eslint/bin/eslint.js \"src/**/?(*.js|*.jsx)\" index.js",
"build": "NODE_ENV=production webpack --bail --config webpack.prod.config.js && npm prune && electron-packager . Fastlane --platform=darwin --arch=x64 --version=0.36.6 --out=release --overwrite --icon=./public/icons/icon.icns --ignore=\"node_modules/(webpack|babel-eslint|eslint|eslint-config-airbnb|eslint-plugin-react|pre-commit|node-sass|sass-loader|style-loader)\"",
"build:dmg": "electron-installer-dmg release/Fastlane-darwin-x64/Fastlane.app Fastlane --out=./release --icon=./public/icons/icon.icns --background=./public/img/background.png --overwrite"
},
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-runtime": "^6.9.2",
"bluebird": "^3.4.0",
"classnames": "^2.2.5",
"express": "^4.13.4",
"history": "^3.0.0",
"lodash": "^4.13.1",
"menubar": "4.1.1",
"node-fetch": "^1.5.3",
"public-ip": "^2.0.1",
"query-string": "^4.2.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-geosuggest": "1.23.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"redux": "^3.5.2",
"redux-actions": "^0.9.1",
"redux-promise": "^0.5.3"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-react": "^5.1.1",
"json-loader": "^0.5.4",
"node-sass": "^3.7.0",
"pre-commit": "^1.1.3",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.2"
},
"pre-commit": [
"lint"
]
}