forked from sqlectron/sqlectron-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.8 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
{
"scripts": {
"postinstall": "install-app-deps",
"dev": "concurrently --names 'webpack,electron' --prefix name 'npm run dev:webpack' 'npm run dev:electron'",
"dev:webpack": "webpack-dev-server --color --config ./webpack.dev.config.js",
"dev:electron": "cross-env DEBUG=sqlectron-gui:*,sqlectron-core:*,spawn-auto-restart node scripts/dev-auto-restart.js",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint",
"clean": "rimraf dist",
"clean:osx": "rimraf dist/Sqlectron-darwin-*",
"clean:win": "rimraf dist/win* dist/Sqlectron-win*",
"clean:linux": "rimraf dist/Sqlectron-linux-* dist/*.deb",
"compile": "rimraf app/out && npm run compile:browser && npm run compile:renderer",
"compile:browser": "cross-env NODE_ENV=production babel ./src/browser -d app/out/browser",
"compile:renderer": "cross-env NODE_ENV=production webpack --progress --display-error-details --config ./webpack.prod.config",
"build:osx": "npm run clean:osx && build --osx",
"build:linux": "npm run clean:linux && build --linux",
"build:win": "npm run clean:win && build --windows",
"dist": "npm run compile && build",
"dist:all-arch": "npm run compile && build --ia32 --x64",
"dist:winlinux": "npm run compile && npm run build:linux && npm run build:win"
},
"build": {
"app-bundle-id": "org.sqlectron.gui",
"app-category-type": "public.app-category.developer-tools",
"osx": {
"contents": [
{
"x": 438,
"y": 275,
"type": "link",
"path": "/Applications"
},
{
"x": 192,
"y": 275,
"type": "file"
}
]
},
"linux": {
"depends": [],
"target": [
"deb",
"rpm",
"sh",
"freebsd",
"pacman",
"tar.xz",
"tar.gz"
]
}
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.6.5",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"brace": "^0.7.0",
"breakpoint-sass": "^2.6.1",
"classnames": "^2.2.5",
"concurrently": "^2.2.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"csv-stringify": "0.0.8",
"del": "^2.2.0",
"denodeify": "^1.2.1",
"electron-builder": "next",
"electron-prebuilt": "^1.2.7",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.0",
"file-loader": "^0.8.5",
"history": "^1.12.6",
"html-webpack-plugin": "^2.19.0",
"html2canvas": "^0.5.0-beta4",
"imports-loader": "^0.6.5",
"jointjs": "^0.9.9",
"jquery": "^2.2.0",
"json-loader": "^0.5.4",
"lodash": "^3.10.1",
"minimist": "^1.2.0",
"node-sass": "^3.4.2",
"react": "^15.0.1",
"react-ace": "3.3.0",
"react-addons-shallow-compare": "^15.1.0",
"react-dom": "^15.0.1",
"react-draggable": "^2.1.2",
"react-redux": "^4.0.1",
"react-resizable": "^1.3.2",
"react-router": "^1.0.2",
"react-select": "^0.9.1",
"react-tabs": "^0.5.1",
"react-transform-hmr": "^1.0.1",
"react-virtualized": "^7.3.1",
"redux": "^3.5.0",
"redux-logger": "^2.2.1",
"redux-thunk": "^1.0.0",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"spawn-auto-restart": "^2.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1"
}
}