forked from tmcw/stickshift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "stickshift",
"description": "an SQL metrics interface",
"version": "1.5.1",
"author": "Tom MacWright",
"browserify": {
"transform": [
"babelify",
"brfs"
]
},
"dependencies": {
"babelify": "^5.0.4",
"brfs": "^1.3.0",
"browserify": "^9.0.3",
"codemirror": "^4.13.0",
"cookie": "^0.1.2",
"dsv": "^0.0.4",
"filesaver.js": "^0.1.1",
"fixed-data-table": "^0.1.0",
"flux": "^2.0.1",
"hubdb": "^1.1.1",
"object-assign": "^2.0.0",
"react": "^0.12.2",
"react-code-mirror": "^3.0.3",
"react-document-title": "^1.0.2",
"react-router": "^0.11.6",
"st": "^0.5.2",
"xhr": "^2.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"concat-stream": "^1.4.7",
"sqlite3": "^3.0.4",
"watchify": "^2.3.0"
},
"keywords": [
"analysis",
"charts",
"data",
"react",
"sql",
"vega"
],
"license": "ISC",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:mapbox/stickshift.git"
},
"scripts": {
"develop": "watchify -d site.js -o bundle.js & st -nc",
"start": "watchify -d site.js -o bundle.js & node example_server.js",
"build-module": "browserify -s stickshift src/index.js > stickshift.js"
}
}