forked from gristlabs/grist-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 829 Bytes
/
Copy pathpackage.json
File metadata and controls
17 lines (17 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "grist-widget",
"version": "0.0.1",
"description": "A repository of grist custom widgets that have no back-end requirements.",
"scripts": {
"build": "node ./_build/publish.js",
"serve": "live-server --port=8585 --no-browser -q",
"build:dev": "node ./_build/publish.js http://localhost:8585",
"serve:dev": "live-server --port=8585 --no-browser -q --middleware=$(pwd)/_build/rewriteUrl.js",
"watch": "nodemon --ignore manifest.json -e js,json --exec 'npm run build:dev'",
"dev": "echo 'Starting local server and watching for changes.\nStart Grist with an environmental variable GRIST_WIDGET_LIST_URL=http://localhost:8585/manifest.json' && npm run watch 1> /dev/null & npm run serve:dev 1> /dev/null"
},
"devDependencies": {
"live-server": "^1.2.1",
"nodemon": "^2.0.15"
}
}