-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "next-tailwind-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0 -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test-all": "yarn run check-format && yarn run lint && yarn run check-types && yarn run build",
"postinstall": "husky install && chmod +x .husky/*"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.0",
"node": ">= 14.19.0"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@headlessui/react": "^1.7.8",
"@next/font": "13.1.1",
"@phosphor-icons/react": "^2.0.13",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"antd": "^5.7.0",
"axios": "^1.2.6",
"dayjs": "^1.11.9",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"formik": "^2.2.9",
"moment": "^2.29.4",
"next": "13.1.1",
"next-themes": "^0.2.1",
"plaiceholder": "^2.5.0",
"powerbi-client": "^2.22.3",
"powerbi-client-react": "^1.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-responsive": "^9.0.2",
"react-scrolllock": "^5.0.1",
"react-share": "^4.4.1",
"react-tailwindcss-select": "^1.8.5",
"react-toastify": "^9.1.1",
"recharts": "^2.7.2",
"sharp": "^0.31.3",
"typescript": "4.9.4",
"yarn": "^1.22.21",
"yup": "^1.2.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"autoprefixer": "^10.4.13",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"tailwindcss": "^3.2.4"
}
}