-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "trt-bicycles",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "npm run lint && npm run prettier:check && npm run test:unit",
"test:unit": "jest",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.0",
"@headlessui/react": "^2.2.9",
"@headlessui/tailwindcss": "^0.2.2",
"@heroicons/react": "^2.2.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^24.10.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"clsx": "^2.1.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"next": "^16.2.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "0.34.5",
"tailwindcss": "^4.2.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"browserslist": "defaults, not ie <= 11",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
}
}