-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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
{
"name": "editable-cli",
"version": "0.0.4",
"description": "command line notebooks powered by observablehq",
"scripts": {
"dev:server": "nodemon --ignore public --ignore test index.js examples/intro.js",
"dev:frontend": "watchify -p [ browserify-livereload --host 127.0.0.1 --port 3333 ] -t sheetify/transform public/index.js -o public/bundle.js",
"dev": "concurrently 'npm run dev:server' 'npm run dev:frontend'",
"dist": "browserify -t sheetify/transform public/index.js | uglifyjs -cm > public/bundle.js",
"start": "node index.js",
"prepublish": "npm run dist"
},
"preferGlobal": true,
"bin": {
"editable-cli": "index.js"
},
"author": "Szymon Kaliski <[email protected]> (http://szymonkaliski.com)",
"license": "MIT",
"dependencies": {
"@observablehq/notebook-runtime": "^1.2.3",
"@thi.ng/hdom": "^3.0.29",
"@thi.ng/interceptors": "^1.8.8",
"chokidar": "^2.0.4",
"debug": "^3.1.0",
"express": "^4.16.3",
"get-parameter-names": "^0.3.0",
"get-port": "^3.2.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"tachyons": "^4.11.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"browserify-livereload": "^1.0.10",
"concurrently": "^3.6.0",
"nodemon": "^1.18.2",
"sheetify": "^7.3.3",
"uglify-es": "^3.3.9",
"watchify": "^3.11.0"
},
"main": "index.js",
"directories": {
"example": "examples"
}
}