-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.08 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.08 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "pokemon-go-desktop",
"productName": "Pokemon Go Desktop",
"version": "0.1.0",
"description": "Desktop App for utilizing Pokemon GO",
"main": "main.js",
"scripts": {
"lint": "eslint app test *.js",
"start": "cross-env NODE_ENV=production electron ./main.js",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron -r babel-register -r babel-polyfill ./main.development",
"build-main": "cross-env NODE_ENV=production node -r babel-register -r babel-polyfill ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --progress --profile --colors",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --progress --profile --colors",
"build": "npm run build-main && npm run build-renderer",
"dev": "NODE_ENV=development nodemon -r babel-register ./src/server/server.js --watch ./src/server/",
"package": "cross-env NODE_ENV=production node -r babel-register package.js",
"package-all": "npm run package -- --all"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackypan1989/pokemon-go-desktop.git"
},
"author": {
"name": "Guan Yu Pan",
"email": "jackypan1989@gmail.com",
"url": "https://github.com/jackypan1989"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jackypan1989/pokemon-go-desktop/issues"
},
"keywords": [
"pokemon",
"pokemon-go",
"electron",
"react",
"react-router",
"webpack",
"react-hot"
],
"homepage": "https://github.com/jackypan1989/pokemon-go-desktop#readme",
"devDependencies": {
"asar": "^0.12.1",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-antd": "^0.4.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-remove-console": "^6.8.0",
"babel-plugin-transform-remove-debugger": "^6.8.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-plugin-webpack-loaders": "^0.7.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"co-mocha": "^1.1.2",
"concurrently": "^2.2.0",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"del": "^2.2.1",
"devtron": "^1.2.1",
"electron-devtools-installer": "^2.0.0",
"electron-packager": "^7.3.0",
"electron-prebuilt": "^1.2.8",
"electron-rebuild": "^1.1.5",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.4.0",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
"jsdom": "^9.4.1",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"node-libs-browser": "^1.0.0",
"nodemon": "^1.10.0",
"postcss-loader": "^0.10.0",
"react-addons-test-utils": "^15.2.1",
"sinon": "^1.17.4",
"spectron": "^3.2.6",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^0.14.1"
},
"dependencies": {
"antd": "^1.8.0",
"baobab": "^2.3.3",
"baobab-react": "^2.1.1",
"bluebird": "^3.4.1",
"css-modules-require-hook": "^4.0.1",
"electron-debug": "^1.0.1",
"font-awesome": "^4.6.3",
"google-map-react": "^0.16.3",
"long": "^3.2.0",
"pogobuf": "cyraxx/pogobuf",
"pokemongo-api": "jackypan1989/pokemongo-api",
"ramda": "^0.22.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-router": "^2.6.0",
"socket.io": "^1.4.8",
"source-map-support": "^0.4.2"
},
"devEngines": {
"node": "4.x || 5.x || 6.x",
"npm": "2.x || 3.x"
}
}