This repository has been archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.92 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
{
"name": "ictsc_sachiko_3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest --run --coverage",
"test:e2e": "playwright test",
"test:e2e-ui": "playwright test --ui",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"font": "docker build -f Dockerfile.font -t font-builder . && docker run -v $(pwd):/host -it font-builder sh -c \"cp /font/Variable/OTF/Subset/NotoSansJP-VF.woff2 /host/pages/NotoSansJP-VF.woff2 && exit\""
},
"dependencies": {
"@next/font": "^13.1.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"axios": "^1.4.0",
"daisyui": "^2.42.0",
"eslint": "8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.1.1",
"gray-matter": "^4.0.3",
"luxon": "^3.2.1",
"next": "^13.1.1",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.1",
"react-hot-toast": "^2.4.0",
"recoil": "^0.7.7",
"recoil-persist": "^4.2.0",
"swr": "^2.0.0",
"typescript": "4.9.3",
"zenn-content-css": "^0.1.81",
"zenn-embed-elements": "^0.1.81",
"zenn-markdown-html": "^0.1.81"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/luxon": "^3.2.0",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.32.2",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^8.6.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.5.0",
"next-router-mock": "^0.9.7",
"postcss": "^8.4.19",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.4",
"vitest": "^0.32.2"
}
}