-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.67 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
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
{
"name": "anubis",
"version": "0.0.16",
"description": "A lightweight trials companion for destiny the game.",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development DEBUG=bungie-auth*,destiny* electron .",
"webpack": "node -r babel-register webpack.js",
"dev": "concurrently -k 'npm run webpack' 'npm start'",
"prod": "NODE_ENV=production webpack --config webpack.prod.babel.js",
"manifest": "node ./tools/build.js",
"electron": "electron .",
"mac": "npm run manifest && npm run prod && electron-packager . Anubis --platform darwin --prune --overwrite --ignore builds --out builds",
"release": "npm run manifest && npm run prod && electron-packager . Anubis --all --prune --overwrite --ignore builds --out builds"
},
"keywords": [
"trials",
"companion",
"app",
"anubis"
],
"author": "Arnout Kazemier",
"license": "MIT",
"dependencies": {
"async": "2.1.x",
"babel-ignore": "2.0.x",
"babel-loader": "6.3.x",
"babel-plugin-transform-object-rest-spread": "6.23.x",
"babel-preset-es2015": "6.22.x",
"babel-preset-react": "6.23.x",
"babel-register": "6.23.x",
"booting": "1.0.x",
"bungie-auth": "1.0.x",
"classnames": "2.2.x",
"connected": "0.0.x",
"destiny-api": "1.3.x",
"electron-json-storage": "3.0.x",
"eventemitter3": "2.0.x",
"express": "4.15.x",
"guardian.gg": "0.0.x",
"halogen": "0.2.x",
"intl-messageformat": "1.3.x",
"portfinder": "1.0.x",
"radium": "github:formidablelabs/radium",
"react": "15.4.x",
"react-burger-menu": "1.10.x",
"react-codemirror": "0.3.x",
"react-countdown-date": "1.0.x",
"react-dom": "15.4.x",
"react-router": "3.0.x",
"react-toggle": "3.0.x",
"react-tooltip": "3.2.x",
"request": "2.81.x",
"stale-state": "1.1.x",
"tick-tock": "1.0.x",
"tmi.js": "1.1.x",
"ws": "2.2.x",
"xmlhttprequest": "1.8.x",
"yeast": "0.1.x"
},
"devDependencies": {
"asar": "0.13.x",
"concurrently": "3.4.x",
"css-loader": "0.26.x",
"electron": "1.4.x",
"electron-devtools-installer": "2.1.x",
"electron-packager": "8.5.x",
"git-rev-sync": "1.8.x",
"git-shizzle": "0.0.x",
"node-sass": "4.5.x",
"sass-loader": "6.0.x",
"style-loader": "0.13.x",
"webpack": "^2.1.0-beta.25",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^2.1.0-beta.10",
"webpack-hot-middleware": "^2.13.2"
},
"babel-ignore": false,
"babel": {
"plugins": [
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
]
],
"presets": [
"babel-preset-es2015",
"babel-preset-react"
]
}
}