-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.14 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"version": "0.7.1",
"name": "sloth",
"main": "./app/index.js",
"authors": [
],
"license": "MIT",
"repository": {
"url": "https://github.com/sc5/sloth.git",
"type": "git"
},
"description": "Changes your Slack status based on the SSID you're currently connected to.",
"productName": "Sloth",
"productUrl": "https://github.com/sc5/sloth/releases",
"scripts": {
"build": "npm run compile-dev && npm run pack",
"build-dist": "npm run compile && npm run dist",
"build-release": "npm run compile && npm run release",
"compile": "NODE_ENV=production ./node_modules/.bin/webpack",
"compile-dev": "NODE_ENV=development ./node_modules/.bin/webpack",
"dev": "NODE_ENV=development ./node_modules/.bin/electron .",
"dist": "build",
"lint": "./node_modules/.bin/eslint .",
"open": "open 'dist/mac/Sloth.app'",
"pack": "build --dir",
"postinstall": "./bash/postinstall.sh",
"release": "export $(cat .release.env | grep -v '#' | xargs) && build",
"start": "npm run build && npm run open",
"watch": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server"
},
"build": {
"appId": "com.github.kirbo.sloth",
"asar": true,
"files": [
".express.env",
"node_modules/**",
"app/assets/**",
"app/dist/**",
"!app/dist/*hot-update*",
"app/src/utils/**",
"app/views/**",
"app/index.js"
],
"extraFiles": [
"bash/**"
],
"mac": {
"category": "public.app-category.utilities"
},
"protocols": [
{
"name": "sloth",
"role": "Viewer",
"schemes": [
"sloth"
]
}
]
},
"devDependencies": {
"airbnb-style": "2.0.0",
"antd": "2.11.2",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-import": "1.2.1",
"babel-polyfill": "6.23.0",
"babel-preset-babili": "0.1.4",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babili": "0.1.4",
"babili-webpack-plugin": "0.1.2",
"css-loader": "0.28.4",
"electron": "1.6.11",
"electron-builder": "19.8.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"less": "2.7.2",
"less-loader": "4.0.4",
"prop-types": "15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-fa": "4.2.0",
"react-hot-loader": "3.0.0-beta.7",
"react-intl": "2.3.0",
"style-loader": "0.18.2",
"url-loader": "0.5.9",
"webpack": "3.0.0",
"webpack-dev-server": "2.5.0"
},
"dependencies": {
"body-parser": "1.17.2",
"debug": "2.6.8",
"dotenv": "4.0.0",
"electron-log": "2.2.6",
"electron-updater": "2.4.3",
"express": "4.15.3",
"node-emoji": "1.5.1",
"node-wifi": "1.2.4",
"request": "2.81.0",
"slack": "8.3.1",
"socket.io": "2.0.3",
"socket.io-client": "2.0.3",
"uuid": "3.1.0"
}
}