-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.96 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
{
"name": "jobs-app",
"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",
"prettier": "prettier \"**/*.+(json|ts|tsx)\"",
"format:check": "npm run prettier -- --check",
"format:fix": "npm run prettier -- --write",
"types:check": "tsc --noEmit --pretty",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"stage:switch": "node scripts/switch-stage.js",
"stage:save": "node scripts/save-stage.js",
"stage:clear": "node scripts/clear-stage.js"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.3.1",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@tanstack/react-query": "^4.2.3",
"@tanstack/react-query-devtools": "^4.2.3",
"axios": "^0.27.2",
"framer-motion": "^7.2.1",
"next": "^12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.34.2",
"zustand": "^4.1.1"
},
"devDependencies": {
"@chakra-ui/storybook-addon": "^4.0.10",
"@mswjs/data": "^0.10.2",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"cypress": "^10.7.0",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.4",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"lint-staged": "^13.0.3",
"msw": "^0.47.4",
"msw-devtools": "^1.0.2",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"ts-eager": "^2.0.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.8.2",
"webpack": "^5.74.0"
},
"msw": {
"workerDirectory": "public"
}
}