-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.37 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bws",
"description": "We design fast, accessible and attractive experiences!",
"author": {
"name": "TheBinaryGuy"
},
"license": "MIT",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "cross-env next-sitemap --config next-sitemap.js",
"test": "echo 'No tests found.'",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"dependencies": {
"@builder.io/partytown": "^0.7.0",
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^2.0.11",
"@tanem/react-nprogress": "^5.0.14",
"clsx": "^1.2.1",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "^2.0.10",
"sharp": "^0.31.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "18.7.18",
"@types/react": "18.0.21",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"autoprefixer": "^10.4.12",
"cross-env": "^7.0.3",
"cssnano": "^5.1.13",
"eslint": "8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next-sitemap": "^3.1.22",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"stylelint": "^14.12.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"tailwindcss": "^3.1.8",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "4.8.3"
},
"lint-staged": {
"src/**/*.{.js.,ts,.jsx,.tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}