-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "@nexterias/homepage",
"type": "module",
"volta": {
"node": "18.14.2"
},
"scripts": {
"prepare": "is-ci || husky install",
"dev": "vite --open",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier -w . && eslint --ext=tsx,ts,js,cjs ./ --fix",
"lint": "prettier -c . && eslint --ext=tsx,ts,js,cjs ./"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.0.18",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2",
"recoil": "^0.7.7"
},
"devDependencies": {
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.32.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.3",
"postcss": "^8.4.35",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.0.4"
}
}