-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.99 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": "codestack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:sitemap": "next-sitemap",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"clean": "rm -rf .next",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"test:utils": "jest --config ./jest.config.js"
},
"dependencies": {
"@ant-design/cssinjs": "^1.10.1",
"@emotion/react": "^11.11.1",
"@emotion/serialize": "^1.1.2",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.1.1",
"@monaco-editor/react": "^4.4.6",
"@reduxjs/toolkit": "^1.9.1",
"@tanstack/react-query": "^4.20.4",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/react-redux": "^7.1.24",
"antd": "^5.6.1",
"axios": "^1.2.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.7",
"classnames": "^2.3.2",
"cookies-next": "^2.1.1",
"eslint": "8.28.0",
"eslint-config-next": "13.0.4",
"express-validator": "^6.14.2",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"monaco-editor": "^0.36.0",
"next": "13.0.4",
"next-connect": "^0.13.0",
"next-redux-wrapper": "^8.0.0",
"next-seo": "^5.15.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.41.1",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"react-use-pagination-hook": "^2.1.0",
"react-uuid": "^2.0.0",
"react-vac": "^0.3.0",
"redux": "^4.2.0",
"sass": "^1.56.1",
"split-pane-react": "^0.1.3",
"styled-components": "^5.3.9",
"twin.macro": "^3.3.1",
"typescript": "^5.0.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/plugin-syntax-typescript": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@emotion/babel-plugin": "^11.11.0",
"@svgr/webpack": "^7.0.0",
"@tailwindcss/forms": "^0.5.3",
"@types/graphql": "^14.5.0",
"@types/jest": "^29.5.6",
"@types/lodash-es": "^4.17.9",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.13",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"postcss": "^8.4.19",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.1",
"typescript-eslint": "^0.0.1-alpha.0"
}
}