forked from yehezkielgunawan/wa-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
{
"name": "wa-helper",
"private": true,
"version": "1.2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"release": "standard-version",
"test": "jest --watch",
"test:ci": "jest --ci --collect-coverage --verbose",
"format": "prettier --write src",
"format:ci": "prettier --check src",
"typescript:ci": "tsc --noEmit"
},
"dependencies": {
"@fontsource/catamaran": "^4.5.10",
"@tailwindcss/forms": "^0.5.3",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"next": "^13.4.1",
"next-seo": "^6.0.0",
"next-themes": "^0.2.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"tailwind-merge": "^1.12.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "17.0.4",
"@types/react": "^18.2.8",
"autoprefixer": "^10.4.14",
"eslint": "^8.27.0",
"eslint-config-next": "latest",
"eslint-config-yehezgun": "^1.2.5",
"husky": "^7.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^12.5.0",
"postcss": "^8.4.24",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write src/"
],
"*.{json,css,scss,md}": [
"prettier --write src/"
]
},
"packageManager": "[email protected]"
}