forked from oldj/SwitchHosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 3.97 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "switchhosts",
"version": "3.3.12",
"description": "Homepage: [https://oldj.github.io/SwitchHosts/](https://oldj.github.io/SwitchHosts/)",
"main": "",
"scripts": {
"_ln": "./scripts/ln.sh",
"test": "nyc ava",
"start": "electron app",
"dll": "webpack --config scripts/webpack.dll.js --progress --profile --colors",
"dev": "cross-env ENV=dev electron app",
"less": "npm run _ln && lessc app-ui/styles/main.less app-ui/styles/main.css",
"build": "gulp ver && npm run less && webpack --progress --profile --colors",
"w": "npm run build -- -w",
"pack": "gulp pack",
"pack-mac": "gulp pack --platform=macOS",
"pack-win": "gulp pack --platform=win64",
"pack-win32": "gulp pack --platform=win32",
"zip": "gulp zip",
"make": "webpack -p --progress && gulp pack && gulp zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oldj/SwitchHosts.git"
},
"author": "oldj",
"license": "MIT",
"bugs": {
"url": "https://github.com/oldj/SwitchHosts/issues"
},
"homepage": "https://oldj.github.io/SwitchHosts/",
"dependencies": {
"antd": "^3.6.5",
"codemirror": "^5.39.0",
"express": "^4.16.3",
"ramda": "^0.24.1",
"react": "^16.4.1",
"react-codemirror": "^1.0.0",
"react-dom": "^16.4.1"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"ava": "^0.22.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.26.0",
"chalk": "^1.1.3",
"classnames": "^2.2.6",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"electron": "^2.0.7",
"electron-packager": "^9.1.0",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.0.1",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.10.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"function-bind": "^1.1.1",
"gulp": "github:gulpjs/gulp#v4.0.0",
"gulp-shell": "^0.6.5",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.3",
"js-beautify": "^1.7.5",
"less": "^2.7.3",
"less-loader": "^4.1.0",
"less-plugin-lists": "^1.1.2",
"loader-utils": "^1.1.0",
"moment": "^2.22.2",
"nyc": "^10.1.2",
"opn": "^4.0.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.4.0",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"sortablejs": "^1.7.0",
"spectron": "^3.8.0",
"style-loader": "^0.16.1",
"uglify-loader": "^2.0.0",
"url-loader": "^0.5.9",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^2.6.1",
"webpack-notifier": "^1.6.0",
"wheel-js": "^0.0.21",
"yargs": "^6.5.0"
},
"ava": {
"files": [
"src/**/*.ava.js",
"test/*.js",
"!**/node_modules/**/*.*"
],
"source": [
"**/*.{js,jsx}",
"!dist/**/*"
],
"match": [],
"concurrency": 5,
"failFast": true,
"tap": true,
"powerAssert": false,
"require": [
"babel-polyfill",
"babel-register"
],
"babel": {
"presets": [
"latest",
"stage-0"
]
}
}
}