-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.78 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
94
{
"name": "travelmate-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"commit": "cz",
"test": "jest --watch",
"test:ci": "jest --ci",
"test-report": "jest --coverage",
"test:e2e": "playwright test",
"playwright-ui": "playwright test --ui",
"export": "next export",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/material-icons": "^5.0.3",
"@fontsource/roboto": "^5.0.3",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.5",
"@storybook/addon-docs": "^7.0.22",
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"firebase": "^10.0.0",
"next": "13.4.6",
"postcss": "^8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.1",
"react-icons": "^4.10.1",
"swr": "^2.1.5",
"typescript": "5.1.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@playwright/test": "^1.35.1",
"@storybook/addon-actions": "^7.0.22",
"@storybook/addon-essentials": "^7.0.22",
"@storybook/addon-interactions": "^7.0.22",
"@storybook/addon-links": "^7.0.22",
"@storybook/addon-styling": "^1.3.0",
"@storybook/blocks": "^7.0.22",
"@storybook/nextjs": "^7.0.22",
"@storybook/react": "^7.0.22",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/testing-library__jest-dom": "^5.14.6",
"commitizen": "^4.3.0",
"dotenv": "^16.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"storybook": "^7.0.22",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mdx,html,scss}": "yarn prettier --write",
"**/*.{js,jsx,ts,tsx}": "yarn eslint --fix"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "env FORCE_COLOR=1 lint-staged --verbose",
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}