-
Notifications
You must be signed in to change notification settings - Fork 229
/
package.json
65 lines (65 loc) · 2.17 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
{
"name": "pokemongo-webspoof",
"version": "1.2.1",
"description": "Spoof your iOS device GPS location for Pokémon Go",
"main": "main.js",
"scripts": {
"dev": "electron main.js | NODE_ENV=development webpack --config webpack.config.babel.js --watch",
"lint": "eslint src",
"clean": "rm -rf ./dist/* ./pokemongo-webspoof-darwin-x64 ./pokemongo-webspoof.zip",
"build:code": "NODE_ENV=production webpack --config webpack.config.babel.js",
"build:electron": "electron-packager . pokemongo-webspoof --platform=darwin --arch=x64",
"open:app": "open ./pokemongo-webspoof-darwin-x64/pokemongo-webspoof.app",
"archive:app": "tar czf pokemongo-webspoof.app.tar.gz ./pokemongo-webspoof-darwin-x64/pokemongo-webspoof.app",
"build": "npm run clean && npm run build:code && npm run build:electron && npm run archive:app"
},
"bin": {
"pokemongo-webspoof": "./bin/pgws",
"pgws": "./bin/pgws"
},
"dependencies": {
"electron-prebuilt": "^1.3.0",
"electron-settings": "^3.2.0",
"geocoder": "^0.2.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"tmp": "0.0.29"
},
"devDependencies": {
"axios": "^0.14.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-save": "^1.1.5",
"classnames": "^2.2.6",
"css-loader": "^0.25.0",
"electron": "^3.0.2",
"electron-debug": "^2.0.0",
"electron-packager": "^12.1.2",
"electron-prebuilt": "^1.4.13",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.1.1",
"google-map-react": "^0.19.0",
"haversine": "^1.1.0",
"json-loader": "^0.5.4",
"mobx": "^2.3.6",
"mobx-react": "^3.5.0",
"places.js": "^1.11.0",
"postcss-import": "8.1.0",
"postcss-loader": "^0.13.0",
"postcss-url": "^8.0.0",
"precss": "^1.4.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-s-alert": "^1.4.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"author": "iam4x",
"license": "ISC"
}