-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.08 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": "r2-blog-sonik",
"version": "0.0.0",
"type": "module",
"private": true,
"engines": {
"npm": ">=10",
"node": ">=20"
},
"author": "Wataru Oguchi <[email protected]> (https://github.com/wataruoguchi)",
"scripts": {
"build": "npm run build:css && vite build && vite build --mode client",
"build:css": "npx tailwindcss -i ./app/index.css -o ./app/style.css",
"test": "jest",
"test:coverage": "jest --coverage",
"dev": "concurrently \"npm:dev:*\"",
"dev:css": "npx tailwindcss -i ./app/index.css -o ./app/style.css --watch",
"dev:app": "vite",
"preview": "wrangler pages dev dist",
"deploy": "$npm_execpath build && wrangler pages deploy ./dist",
"format": "prettier --write .",
"lint": "eslint --cache . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "husky install"
},
"dependencies": {
"@hono/vite-dev-server": "^0.0.7",
"@sonikjs/react": "^0.0.4",
"hono": "^3.7.6",
"marked": "^11.1.0",
"marked-emoji": "^1.3.1",
"marked-highlight": "^2.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sonik": "^0.1.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@sonikjs/cloudflare-pages": "^0.0.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.8.6",
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"miniflare": "^3.20231030.3",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vite": "^4.4.11",
"wrangler": "^3.20.0"
}
}