-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.09 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
{
"name": "talentuzz",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .ts,.tsx ./src --no-error-on-unmatched-pattern",
"lint:fix": "eslint --ext .ts,.tsx ./src --no-error-on-unmatched-pattern --fix",
"types:check": "tsc --noEmit --pretty",
"prettier": "prettier \"**/*.+(ts|tsx)\"",
"format:check": "npm run prettier -- --check",
"format:fix": "npm run prettier -- --write",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"cypress:chrome": "cypress run --browser chromium",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.11",
"@tanstack/react-query": "^4.24.6",
"@tanstack/react-query-devtools": "^4.24.6",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"axios": "^1.3.3",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"framer-motion": "^9.0.2",
"js-cookie": "^3.0.5",
"next": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.43.1",
"react-icons": "^4.7.1",
"zod": "^3.20.6",
"zustand": "^4.3.3"
},
"devDependencies": {
"@chakra-ui/storybook-addon": "^4.0.16",
"@mswjs/data": "^0.11.2",
"@storybook/addon-essentials": "^7.0.0-beta.46",
"@storybook/addon-interactions": "^7.0.0-beta.46",
"@storybook/addon-links": "^7.0.0-beta.46",
"@storybook/blocks": "^7.0.0-beta.46",
"@storybook/nextjs": "^7.0.0-beta.46",
"@storybook/react": "^7.0.0-beta.46",
"@storybook/testing-library": "^0.0.14-next.1",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/js-cookie": "^3.0.3",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"cypress": "^12.6.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.10",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.1",
"msw": "^1.1.0",
"msw-devtools": "^1.0.2",
"prettier": "^2.8.4",
"start-server-and-test": "^1.15.4",
"storybook": "^7.0.0-beta.46",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.9.5"
},
"msw": {
"workerDirectory": "public"
}
}