-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
67
{
"name": "@web-cell/home",
"version": "2.0.0",
"description": "Official site of WebCell",
"keywords": [
"WebCell",
"homepage",
"official",
"website"
],
"author": "shiy2008@gmail.com",
"license": "AGPL-3.0",
"private": true,
"homepage": "https://web-cell.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/EasyWebApp.github.io.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/EasyWebApp.github.io/issues"
},
"dependencies": {
"boot-cell": "^2.0.0-beta.29",
"cell-router": "^3.0.0-rc.8",
"classnames": "^2.5.1",
"dom-renderer": "^2.4.2",
"github-web-widget": "^4.0.0-rc.2",
"koajax": "^3.0.3",
"marked": "^14.1.4",
"mobx": "^6.13.5",
"prismjs": "^1.29.0",
"web-cell": "^3.0.0",
"web-utility": "^4.4.2"
},
"devDependencies": {
"@parcel/config-default": "~2.12.0",
"@parcel/packager-raw-url": "~2.12.0",
"@parcel/transformer-less": "~2.12.0",
"@parcel/transformer-typescript-tsc": "~2.12.0",
"@parcel/transformer-webmanifest": "~2.12.0",
"@types/node": "^20.17.6",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"parcel": "~2.12.0",
"prettier": "^3.3.3",
"typescript": "~5.6.3",
"workbox-cli": "^7.3.0"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true
},
"lint-staged": {
"*.{html,md,less,json,yml,js,ts,tsx}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"clean": "rm -rf .parcel-cache/ dist/",
"start": "npm run clean && parcel source/index.html --open",
"pack-dist": "parcel build source/index.html --public-url .",
"pack-sw": "rm -f dist/sw.js.map && workbox generateSW",
"build": "npm run clean && npm run pack-dist && npm run pack-sw"
}
}