-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.82 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.82 KB
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
92
93
94
95
96
97
98
{
"name": "compass-web",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "husky install",
"build": "next build",
"build:analyze": "cross-env ANALYZE='true' yarn build",
"dev": "next dev",
"dev:debugger": "cross-env NODE_OPTIONS='--inspect' next dev",
"generate": "graphql-codegen -r dotenv/config",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"docker": "./docker/build.sh"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@tanstack/react-query": "^4.2.1",
"@tanstack/react-query-devtools": "^4.2.3",
"ahooks": "^3.7.0",
"classnames": "^2.3.1",
"daisyui": "^2.31.0",
"date-fns": "^2.29.2",
"echarts": "^5.3.3",
"framer-motion": "^7.2.1",
"graphql": "^16.6.0",
"graphql-request": "^4.3.0",
"gsap": "^3.11.0",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"next": "12.2.5",
"next-auth": "^4.10.3",
"nextjs-progressbar": "^0.0.14",
"query-string": "^7.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.36.0",
"react-hotkeys-hook": "^3.4.7",
"react-icons": "^4.4.0",
"react-odometerjs": "^2.1.2",
"react-resize-detector": "^7.1.2",
"react-use": "^17.4.0"
},
"devDependencies": {
"@graphql-codegen/add": "^3.2.1",
"@graphql-codegen/cli": "^2.11.6",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.2",
"@graphql-codegen/typescript-react-query": "^4.0.1",
"@next/bundle-analyzer": "^12.2.5",
"@svgr/webpack": "^6.3.1",
"@tailwindcss/line-clamp": "^0.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/gtag.js": "^0.0.11",
"@types/http-proxy": "^1.17.9",
"@types/lodash": "^4.14.184",
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.6.4",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.8.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.54.5",
"tailwindcss": "^3.1.8",
"typescript": "4.7.4"
},
"browserslist": {
"production": [
"defaults",
"not dead",
"not ie <= 11",
"safari >= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}