-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "commit-stalker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test": "cd firebase && firebase emulators:exec 'NEXT_PUBLIC_FIREBASE_EMULATOR=enabled pnpm exec vitest run'",
"e2e": "NODE_ENV=test playwright test"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"@next/font": "13.1.1",
"@tanstack/react-query": "^4.20.4",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"date-fns": "^2.29.3",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1",
"firebase": "^9.15.0",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"typescript": "4.9.4",
"unified": "^10.1.2",
"zenn-content-css": "^0.1.134",
"zod": "^3.20.2"
},
"devDependencies": {
"@playwright/test": "^1.29.1",
"@testing-library/react": "^13.4.0",
"@types/whatwg-fetch": "^0.0.33",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"jsdom": "^20.0.3",
"msw": "^0.49.2",
"postcss": "^8.4.20",
"tailwindcss": "^3.2.4",
"vite": "^4.0.3",
"vitest": "^0.26.2",
"whatwg-fetch": "^3.6.2"
},
"msw": {
"workerDirectory": "public"
}
}