-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
117 lines (117 loc) · 3.08 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
{
"name": "tedis",
"description": "GUI for Tile38",
"productName": "Tedis",
"version": "0.1.0",
"electronVersion": "1.6.11",
"license": "MIT",
"author": "Vojtěch Vondra <https://vojtechvondra.cz>, Original Tedis code: luin <[email protected]> (http://zihua.li)",
"main": "server/main.js",
"scripts": {
"build": "webpack --progress --colors",
"watch": "npm run build -- --watch",
"electron": "electron .",
"lint": "xo client/**/*.{js,jsx}",
"pack": "NODE_ENV=production npm run build -- -p --config webpack.production.config.js && node bin/pack.js",
"release": "NODE_ENV=production ./bin/release"
},
"xo": {
"extends": "xo-react/space",
"semicolon": false,
"ignore": [
"client/vendors/**",
"client/photon/**"
],
"envs": [
"browser"
],
"globals": [
"showModal"
],
"rules": {
"indent": [
"error",
2
],
"unicorn/filename-case": "off",
"operator-linebreak": [
"error",
"after",
{
"overrides": {
"?": "before",
":": "before"
}
}
],
"new-cap": "off",
"import/no-unanssigned-import": "off",
"import/default": "off",
"import/prefer-default-export": "off"
}
},
"repository": {
"type": "git",
"url": "git://github.com/vvondra/tedis.git"
},
"dependencies": {
"fixed-data-table-2": "^0.7.17",
"ioredis": "^2.4.2",
"jquery": "^2.1.4",
"leaflet": "^1.2.0",
"lodash": "^3.10.1",
"redis-commands": "^1.0.1",
"ssh2": "^0.5.4"
},
"devDependencies": {
"asar": "^0.8.3",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.2",
"babel-loader": "^7.0.0",
"babel-preset-electron": "^1.4.15",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codemirror": "^5.25.2",
"conventional-github-releaser": "^0.5.3",
"css-loader": "^0.28.4",
"electron": "^1.7.3",
"electron-osx-sign": "^0.4.4",
"electron-packager": "^8.6.0",
"eslint-config-xo": "^0.18.1",
"eslint-config-xo-react": "^0.11.1",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^1.0.1",
"github": "^0.2.4",
"human-format": "^0.5.0",
"immutable": "^3.8.1",
"json-editor": "^0.7.23",
"json5": "^0.5.1",
"jsonlint": "^1.6.2",
"lint": "^1.1.2",
"minimatch": "^3.0.4",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-codemirror": "^1.0.0",
"react-document-title": "^2.0.1",
"react-dom": "^15.5.4",
"react-draggable": "^2.2.6",
"react-leaflet": "^1.3.0",
"react-redux": "^5.0.4",
"react-split-pane": "^0.1.63",
"redis-splitargs": "^1.0.0",
"redux": "^3.7.0",
"redux-actions": "^2.0.3",
"reselect": "^3.0.1",
"sass-loader": "^6.0.6",
"sortablejs": "^1.4.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^2.6.1",
"webpack-dev-server": "^1.12.0",
"xo": "^0.18.1"
},
"false": {}
}