-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.65 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.65 KB
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": "synonym",
"version": "0.0.1",
"description": "Connect to multiple databases of different types at one time",
"main": "main.js",
"scripts": {
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive --require ./test/setup.js $(find test -name '*.spec.js')",
"test-watch": "npm test -- --watch",
"test-e2e:crdv": "chromedriver",
"test-e2e": "NODE_ENV=test mocha --compilers js:babel/register --require ./test/setup.js --require co-mocha ./test/e2e.js",
"lint": "eslint .",
"hot-server": "node server.js",
"build": "NODE_ENV=production webpack --config webpack.config.production.js --progress --profile --colors",
"start": "npm-run-all --parallel hot-server start-hot",
"start-hot": "HOT=1 NODE_ENV=development electron .",
"package": "NODE_ENV=production node package.js",
"package-all": "npm run package -- --all"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbslone/synonym.git"
},
"author": {
"name": "David Slone",
"email": "dbslone@gmail.com",
"url": "https://github.com/dbslone/synonym"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dbslone/synonym/issues"
},
"keywords": [
"synonym",
"database",
"postgres",
"mysql",
"redis"
],
"homepage": "https://github.com/dbslone/synonym#readme",
"devDependencies": {
"asar": "^0.8.0",
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.3.0",
"chromedriver": "^2.19.0",
"co-mocha": "^1.1.2",
"css-loader": "^0.22.0",
"css-modules-require-hook": "^2.0.2",
"del": "^2.0.1",
"electron-packager": "^5.0.2",
"electron-prebuilt": "^0.34.0",
"electron-rebuild": "^1.0.0",
"eslint": "^1.3.1",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.3.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.5",
"jsdom": "^7.0.2",
"minimist": "^1.2.0",
"mocha": "^2.3.0",
"node-libs-browser": ">= 0.4.0 <=0.6.0",
"npm-run-all": "^1.3.4",
"object-assign": "^4.0.1",
"postcss": "^5.0.11",
"postcss-modules-extract-imports": "^1.0.0",
"postcss-modules-local-by-default": "^1.0.0",
"postcss-modules-scope": "^1.0.0",
"postcss-modules-values": "^1.1.1",
"proxyquire": "^1.7.1",
"react-addons-test-utils": "^0.14.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"redux-devtools": "^3.0.0-beta-3",
"redux-devtools-dock-monitor": "^1.0.0-beta-3",
"redux-devtools-log-monitor": "^1.0.0-beta-3",
"redux-logger": "^2.3.1",
"selenium-webdriver": "^2.48.2",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.1",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1",
"webpack-target-electron-renderer": "^0.1.1"
},
"dependencies": {
"electron-debug": "^0.4.0",
"font-awesome": "^4.4.0",
"history": "^1.17.0",
"localstorage": "^0.1.0",
"lodash": "^4.0.0",
"massive": "^2.1.0",
"material-ui": "^0.14.2",
"pg": "^4.4.3",
"pg-simple": "^0.2.2",
"react": "^0.14.6",
"react-dom": "^0.14.2",
"react-redux": "^4.0.0",
"react-router": "^1.0.3",
"react-tap-event-plugin": "^0.2.1",
"redux": "^3.0.4",
"redux-promise": "^0.5.0",
"redux-router5": "^1.1.1",
"redux-thunk": "^1.0.0",
"reselect": "^2.0.1",
"router5": "^1.2.2",
"sequelize": "^3.14.2"
}
}