-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mark-wiki",
"version": "0.4.0",
"license": "AGPL-3.0",
"author": "[email protected]",
"description": "Web-site scaffold based on BootCell, MarkCell & Parcel",
"keywords": [
"website",
"CMS",
"blog",
"scaffold",
"bootstrap",
"web-cell",
"markdown",
"typescript",
"parcel"
],
"homepage": "https://web-cell.dev/mark-wiki/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/mark-wiki.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/mark-wiki/issues"
},
"dependencies": {
"boot-cell": "^1.0.0-rc.1",
"classnames": "^2.2.6",
"web-cell": "^2.0.0-rc.20"
},
"devDependencies": {
"@types/node": "^13.9.3",
"husky": "^4.2.3",
"less": "^3.11.1",
"lint-staged": "^10.0.8",
"mark-cell": "^0.4.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{css,less,md,mdx,json,ts,tsx}": [
"prettier --write"
]
},
"scripts": {
"test": "lint-staged",
"pack-mdx": "mark-cell document/source -p web-cell -f createCell -l source/layout -s 1",
"boot-html": "parcel document/public/index.html --open",
"pack-html": "parcel build document/public/index.html --public-url .",
"clean": "rm -rf document/dist/ document/public dist/",
"start": "npm run clean && npm run pack-mdx && npm run boot-html",
"build": "npm run clean && npm run pack-mdx && npm run pack-html"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm run build"
}
}
}