-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 Bytes
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
{
"name": "sqlshare",
"version": "0.1.0",
"engines": {
"node": "6.5.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"body-parser": "^1.13.2",
"bootstrap": "^3.3.7",
"c3": "^0.4.12",
"d3": "^3.5.17",
"express": "4.12.*",
"jquery": "^2.2.4",
"marked": "^0.3.6",
"markup-js": "^1.5.21",
"pg": "^4.4.0",
"react": "^0.14.9",
"react-dom": "^0.14.9",
"sqldoc": "^1.0.1"
},
"scripts": {
"start": "node server.js",
"build:watch": "./node_modules/babel-cli/bin/babel.js --plugins transform-react-jsx --out-dir=build src --watch",
"postinstall": "./node_modules/babel-cli/bin/babel.js --plugins transform-react-jsx --out-dir=build src"
},
"devDependencies": {
"mocha": "^2.3.3",
"request": "^2.65.0"
},
"bin": {
"sqlshare": "./sqlshare"
}
}