-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
91 lines (91 loc) · 2.85 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "Vets-Who-Code",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"format": "prettier --ignore-path .prettierignore --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"clean": "rimraf *.tsbuildinfo .next out yarn-error.log",
"clean-all": "rimraf *.tsbuildinfo node_modules .husky .next out yarn-error.log",
"typecheck": "tsc -p tsconfig.json",
"lint": "next lint",
"lint:fix": "yarn typecheck & yarn format & yarn lint --fix",
"prepare": "husky install",
"postbuild": "next-sitemap"
},
"dependencies": {
"@googlemaps/react-wrapper": "^1.1.35",
"@googlemaps/typescript-guards": "^2.0.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^1.1.0",
"@types/express": "^4.17.17",
"ace-builds": "^1.33.1",
"ai": "^2.2.8",
"axios": "^1.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"dayjs": "^1.11.4",
"disqus-react": "^1.1.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fast-equals": "3.0.3",
"framer-motion": "^6.5.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.378.0",
"mailchimp-api-v3": "^1.15.0",
"marked": "^4.0.18",
"next": "12.2.2",
"next-pwa": "^5.5.4",
"next-react-svg": "^1.1.3",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.11",
"react": "18.2.0",
"react-ace": "^11.0.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.0",
"react-simple-typewriter": "^3.0.1",
"swiper": "^8.3.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@playwright/test": "^1.37.1",
"@tailwindcss/typography": "^0.5.2",
"@types/cookie": "^0.5.1",
"@types/google.maps": "^3.58.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/marked": "^4.0.3",
"@types/node": "^18.0.0",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@types/react-portal": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.23",
"typescript": "4.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}