-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 920 Bytes
/
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
{
"private": true,
"name": "hafa-next",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"export": "next build",
"fmt": "prettier --write --cache 'app/**/*.{ts,tsx}' 'components/**/*.{ts,tsx}' 'styles/**/*.css' '*.{json,js,ts}'",
"lint": "tsc && eslint --cache 'app/**/*.{ts,tsx}' 'components/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.2",
"eslint-plugin-spellcheck": "^0.0.20",
"next": "^15.0.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}