-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.49 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
{
"name": "mcb2_team01_client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:ssg": "next build && next export",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress open",
"predev": "ts-node --project ./tsconfig.node.json ./src/common/scripts/generateAntdCss.tsx",
"prebuild": "cross-env NODE_ENV=production ts-node --project ./tsconfig.node.json ./src/common/scripts/generateAntdCss.tsx"
},
"dependencies": {
"@ant-design/cssinjs": "^1.3.0",
"@ant-design/icons": "^5.0.1",
"@ant-design/static-style-extract": "~1.0.1",
"@apollo/client": "^3.7.13",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@hookform/resolvers": "^3.1.0",
"@toast-ui/editor": "^3.2.2",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.1.0",
"@toast-ui/editor-plugin-color-syntax": "^3.1.0",
"@toast-ui/react-editor": "^3.2.3",
"antd": "^5.4.6",
"apollo-upload-client": "^17.0.0",
"chart.js": "^4.3.0",
"chartjs-adapter-date-fns": "^3.0.0",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"dayjs": "^1.11.7",
"eslint": "8.39.0",
"eslint-config-next": "13.3.4",
"faker": "^6.6.6",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"lodash": "^4.17.21",
"next": "12.1.0",
"prettier": "^2.8.8",
"prismjs": "^1.29.0",
"react": "17.0.2",
"react-chartjs-2": "^5.2.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-infinite-scroller": "^1.2.6",
"react-lottie-player": "^1.5.4",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"recoil": "^0.7.7",
"remark-gfm": "^3.0.1",
"remove-markdown": "^0.5.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "*",
"uuid": "^9.0.0",
"yup": "^1.1.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/typescript": "^3.0.2",
"@types/apollo-upload-client": "^17.0.2",
"@types/lodash": "^4.14.194",
"@types/node": "17.0.2",
"@types/prismjs": "^1.26.0",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/remove-markdown": "^0.3.1",
"@types/uuid": "^9.0.1"
},
"resolutions": {
"@types/react": "17.0.2"
}
}