-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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": "tango",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"postinstall": "husky install",
"commit": "cz"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"clsx": "^1.2.1",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"focus-visible": "^5.2.0",
"framer-motion": "^8.4.3",
"next": "13.1.1",
"next-seo": "^5.15.0",
"postcss-focus-visible": "^7.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.42.1",
"react-table": "^7.8.0",
"recharts": "^2.3.2",
"typescript": "4.9.4",
"zustand": "^4.3.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/react-table": "^7.7.14",
"autoprefixer": "^10.4.13",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwind-merge": "^1.10.0",
"tailwindcss": "^3.2.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./prettier.config.js --write"
],
"**/*.{css,scss,md,html,json}": [
"prettier --config ./prettier.config.js --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}