-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.03 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
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
{
"name": "bootcell-document",
"version": "1.0.0",
"description": "Re-implemented Official Document site of BootStrap & FontAwesome based on WebCell, BootCell & MarkCell",
"dependencies": {
"@nuintun/qrcode": "^3.1.1",
"boot-cell": "^1.9.5",
"cell-router": "~2.0.4",
"classnames": "^2.3.1",
"github-web-widget": "^3.0.0-beta.9",
"iterable-observer": "1.0.0-rc.0",
"koajax": "^0.7.1",
"lodash.groupby": "^4.6.0",
"markdown-ime": "^1.0.3",
"marked": "^4.0.12",
"mobx": "^5.15.7",
"mobx-web-cell": "^0.3.5",
"quill": "^1.3.7",
"quill-image-uploader": "^1.2.2",
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2",
"web-cell": "~2.3.0",
"web-utility": "^3.0.0"
},
"devDependencies": {
"@octokit/openapi-types": "^11.2.0",
"@types/classnames": "^2.3.1",
"@types/lodash.groupby": "^4.6.6",
"autoprefixer": "^9.8.8",
"husky": "^7.0.4",
"less": "^4.1.2",
"lint-staged": "^12.3.3",
"mark-cell": "^0.4.9",
"parcel-bundler": "^1.12.5",
"postcss-modules": "^3.2.2",
"prettier": "^2.5.1",
"typescript": "~4.3.5",
"workbox-cli": "^6.4.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{html,md,mdx,less,json,yml,ts,tsx}": "prettier --write"
},
"postcss": {
"modules": true,
"plugins": {
"autoprefixer": {
"grid": true
}
}
},
"scripts": {
"test": "lint-staged",
"pack-mdx": "mark-cell document/source -p web-cell -f createCell",
"pack-tsx": "parcel build source/index.html --public-url .",
"build": "rm -rf dist/ document/dist/ && npm run pack-mdx && npm run pack-tsx && workbox generateSW",
"start": "npm run pack-mdx && parcel source/index.html --open"
}
}