-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.2 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
65
66
67
68
69
{
"name": "bootcell-document",
"version": "2.0.0",
"description": "Re-implemented Official Document site of Bootstrap & FontAwesome based on WebCell, BootCell & Parcel",
"engines": {
"node": ">=20"
},
"dependencies": {
"boot-cell": "^2.0.0-rc.19",
"cell-router": "^4.0.4",
"classnames": "^2.5.1",
"dom-renderer": "^2.6.2",
"github-web-widget": "^4.0.0",
"iterable-observer": "^1.1.0",
"mobx": "^6.15.0",
"mobx-github": "^0.5.1",
"web-cell": "^3.2.2",
"web-utility": "^4.6.1"
},
"devDependencies": {
"@parcel/config-default": "~2.16.0",
"@parcel/packager-raw-url": "~2.16.0",
"@parcel/transformer-less": "~2.16.0",
"@parcel/transformer-typescript-tsc": "~2.16.0",
"@parcel/transformer-webmanifest": "~2.16.0",
"@types/mdx": "^2.0.13",
"@types/node": "^22.18.6",
"fs-match": "^1.7.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"parcel": "~2.16.0",
"parcel-transformer-mdx": "^0.4.2",
"postcss": "^8.5.6",
"postcss-modules": "^6.0.1",
"prettier": "^3.6.2",
"svgo": "^3.3.2",
"tsx": "^4.20.6",
"typescript": "~5.9.2",
"workbox-cli": "^7.3.0",
"yaml": "^2.8.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"esbuild",
"lmdb",
"msgpackr-extract"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{html,md,mdx,less,json,yml,ts,tsx}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"scripts": {
"prepare": "husky && npm run clean",
"test": "lint-staged",
"clean": "rm -rf .parcel-cache/ dist/ && tsx create-index source/document/",
"pack-tsx": "parcel build source/index.html --public-url .",
"build": "npm run clean && npm run pack-tsx && workbox generateSW",
"start": "npm run clean && parcel source/index.html --open"
}
}