-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.44 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.44 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
{
"name": "datalab",
"version": "1.0.0",
"description": "A desktop application that renders D3 visualizations from your database.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "webpack",
"build-watch": "webpack -w",
"seed": "node seed.js",
"pack": "build --dir",
"dist": "build"
},
"build": {
"npmRebuild": true,
"asar": true,
"icon": "datalab.icns",
"appId": "fullStack.dataLab",
"mac": {
"category": "Graphics & Design"
}
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"devtron": "^1.4.0",
"electron": "~1.6.2",
"electron-builder": "^17.8.0",
"electron-rebuild": "^1.5.11",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-standard": "^3.0.1",
"node-gyp": "^3.6.1",
"redux-devtools-extension": "^2.13.1",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"remote-redux-devtools": "^0.5.7",
"webpack": "^2.5.0"
},
"dependencies": {
"axios": "^0.16.1",
"brace": "^0.10.0",
"css-loader": "^0.28.1",
"d3": "^4.8.0",
"d3-save-svg": "0.0.2",
"d3-scale-chromatic": "^1.1.1",
"electron-json-storage": "^3.0.5",
"electron-reload": "^1.2.0",
"firebase": "^3.9.0",
"history": "^4.6.1",
"isomorphic-style-loader": "^2.0.0",
"jquery": "^3.2.1",
"pg": "^6.1.5",
"pg-native": "^1.10.1",
"react": "^15.5.4",
"react-ace": "^4.2.1",
"react-bootstrap": "^0.31.0",
"react-desktop": "^0.3.0",
"react-dnd": "^2.3.0",
"react-dnd-html5-backend": "^2.3.0",
"react-dom": "^15.5.4",
"react-faux-dom": "^3.1.0",
"react-grid-layout": "^0.14.6",
"react-print": "^1.3.1",
"react-redux": "^5.0.4",
"react-resizable": "^1.7.0",
"react-router": "^4.1.1",
"react-router-bootstrap": "^0.24.2",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"sequelize": "^3.30.4",
"style-loader": "^0.17.0"
}
}