-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.17 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.17 KB
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
{
"name": "dev-book",
"version": "0.0.1",
"description": "dev-book",
"main": "",
"scripts": {
"cleanup": "rm -r ./html",
"build:js": "cp ./node_modules/@next-book/interface/dist/interface.js ./assets/scripts/interface.js",
"sync-dev-js": "cpx -vLwC ./node_modules/@next-book/interface/dist/interface.js ./book/scripts/",
"watch-css": "sass --watch './node_modules/@next-book/interface/src/scss/style.scss' ./book/style/style.css",
"build:html": "npm run build:js && hugo -d html && node filters.js",
"build:fromhtml": "publish-nb --src html --out book --dev",
"build": "npm run build:html && npm run build:fromhtml && npm run cleanup && npm run sync-dev-js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jan Martinek",
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@deboxsoft/cpx": "^1.5.0",
"@next-book/interface": "^0.1.22",
"@next-book/publisher": "^0.2.21",
"babel-loader": "^8.2.2",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"sass": "^1.35.1"
}
}