-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.42 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
{
"name": "poker-procon",
"version": "1.0.0",
"private": true,
"author": "Benesse i-Career Co., Ltd.",
"license": "(c) Benesse i-Career Co., Ltd. All Rights Reserved.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --coverage --env=node --verbose --config ./jest.config-player.js",
"test:jsdom": "jest --coverage --env=jsdom --verbose --config ./jest.config-developer-jsdom.js",
"test:node": "jest --coverage --env=node --verbose --config ./jest.config-developer-node.js",
"test:all": "sh test.sh",
"init-data": "rm -rf ./data ./logs"
},
"dependencies": {
"@chakra-icons/bootstrap": "^1.5.1",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"axios": "^1.6.7",
"date-fns": "^3.4.0",
"framer-motion": "^11.0.13",
"fs": "^0.0.1-security",
"gray-matter": "^4.0.3",
"next": "14.1.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.0",
"react-icons": "^5.0.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.22.3",
"winston": "^3.12.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-testing-library": "^5.7.2",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"node-mocks-http": "^1.14.1",
"prettier": "^2.7.1",
"typescript": "^5"
},
"overrides": {
"@chakra-ui/focus-lock": {
"react-focus-lock": "2.11.3"
}
}
}