-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.88 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
{
"name": "heedy-notebook-plugin",
"version": "0.0.0",
"description": "",
"nodemonConfig": {
"ignore": [
"README.md",
"tests",
"docs",
"node_modules",
".git",
"dist",
"testdb",
"frontend",
"package-lock.json",
"package.json",
".gitignore",
"heedy",
"Makefile",
"screenshots"
],
"ext": "*",
"delay": 500
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:readme": "remark -u remark-embed-images README.md -o ./dist/notebook/README.md",
"watch:readme": "remark -u remark-embed-images README.md -o ./dist/notebook/README.md -w",
"build:backend": "rsync -r --exclude README.md --exclude screenshots --exclude \".*\" --exclude Makefile --include heedy.conf --exclude \"heedy*\" --exclude tests --exclude docs --exclude node_modules --exclude package.json --exclude package-lock.json --exclude frontend --exclude testdb --exclude dist --exclude docs ./* ./dist/notebook --delete",
"watch:backend": "nodemon --watch . --exec \"npm run build:backend\"",
"build:frontend": "if test -d ./frontend; then (cd frontend; npm run build); fi",
"debug:frontend": "if test -d ./frontend; then (cd frontend; npm run debug); fi",
"watch:frontend": "if test -d ./frontend; then (cd frontend; npm run watch); fi",
"build": "npm run build:backend && npm run build:readme && npm run build:frontend",
"debug": "npm run build:backend && npm run build:readme && npm run debug:frontend",
"watch": "run-p 'watch:readme' 'watch:backend' 'watch:frontend'"
},
"repository": {
"type": "git",
"url": "https://github.com/heedy/heedy-notebook-plugin"
},
"author": "Heedy contributors",
"license": "Apache-2.0",
"dependencies": {
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"remark-cli": "^10.0.1",
"remark-embed-images": "^3.0.1"
}
}