-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.89 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
{
"name": "fight-me-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"install:playwright": "playwright install --with-deps chromium",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test": "jest",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md,cjs,mjs}\" && prettier --write \"**/*.{yaml,yml}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,md,cjs,mjs}\" && prettier --check \"**/*.{yaml,yml}\"",
"prepare": "husky install",
"pre-commit": "pnpm run format && pnpm run lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"test-storybook:ci": "pnpx concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"pnpx http-server storybook-static --port 6006 --silent\" \"pnpx wait-on http://127.0.0.1:6006 && pnpm run test-storybook\""
},
"dependencies": {
"@vercel/analytics": "^0.1.11",
"daisyui": "^2.51.5",
"next": "^13.2.4",
"react": "18.2.0",
"react-daisyui": "^3.1.1",
"react-dom": "18.2.0",
"socket.io-client": "^4.6.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@storybook/addon-essentials": "^7.0.4",
"@storybook/addon-interactions": "^7.0.4",
"@storybook/addon-links": "^7.0.4",
"@storybook/blocks": "^7.0.4",
"@storybook/jest": "^0.1.0",
"@storybook/nextjs": "^7.0.4",
"@storybook/react": "^7.0.4",
"@storybook/test-runner": "^0.10.0",
"@storybook/testing-library": "0.0.14-next.2",
"@testing-library/react": "^14.0.0",
"@types/eslint": "^8.21.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"playwright": "^1.32.3",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"storybook": "^7.0.4",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run pre-commit"
}
},
"ct3aMetadata": {
"initVersion": "7.10.0"
}
}