This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
93 lines (93 loc) · 3.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hexo-sharp",
"version": "1.0.0",
"description": "Modern serverless manager for static blogs",
"main": "./dist/worker.js",
"dir": "./dist",
"packageManager": "pnpm@7.13.2",
"scripts": {
"build": "pnpm build:frontend && pnpm build:worker",
"build:worker": "node build.mjs",
"build:frontend": "vite build --config src/frontend/vite.config.ts",
"dev": "cross-env DEV=true miniflare -dwB \"pnpm build:worker\" --build-watch-path src/worker",
"dev:frontend": "vite --config src/frontend/vite.config.ts",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"test": "jest --config jestconfig.json --verbose",
"cleanupAssets": "node cleanup.mjs",
"check": "tsc"
},
"author": "author",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.18.2",
"@cloudflare/workers-types": "^3.11.0",
"@cloudflare/wrangler": "^1.20.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/react-redux": "^7.1.24",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-react": "^1.3.2",
"cross-env": "^7.0.3",
"esbuild": "^0.14.42",
"esbuild-plugin-replace": "^1.2.0",
"esbuild-plugin-resolve": "^1.0.3",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.4.0",
"jest": "^28.1.0",
"miniflare": "^2.5.0",
"prettier": "^2.6.2",
"rollup": "^2.75.3",
"service-worker-mock": "^2.0.5",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vite-plugin-pwa": "^0.12.0"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@codemirror/language": "^0.20.2",
"@codemirror/legacy-modes": "^0.20.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@glenstack/cf-workers-hcaptcha": "^1.0.0",
"@hcaptcha/react-hcaptcha": "^1.3.0",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.1",
"@mui/system": "^5.8.1",
"@mui/x-data-grid": "^5.11.1",
"@octokit/rest": "^18.12.0",
"@reduxjs/toolkit": "^1.8.2",
"@tsndr/cloudflare-worker-jwt": "^1.1.6",
"@uiw/react-codemirror": "^4.7.0",
"axios": "^0.27.2",
"base65536": "^4.0.2",
"bcryptjs": "^2.4.3",
"date-fns": "^2.28.0",
"isomorphic-fetch": "^3.0.0",
"itty-router": "^2.6.1",
"js-base64": "^3.7.2",
"notistack": "^2.0.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"vditor": "^3.8.15",
"workbox-window": "^6.5.2"
}
}