-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "nextjs-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.8.0",
"npm": ">=8.6.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"format": "prettier --write .",
"lint": "npm run lint:js && npm run lint:md",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext .js,.jsx --ignore-path .gitignore .",
"lint:md": "markdownlint --ignore-path .gitignore .",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.2",
"clsx": "^1.2.1",
"file-loader": "^6.2.0",
"formik": "^2.2.9",
"framer-motion": "^8.5.0",
"markdownlint-cli": "^0.33.0",
"next": "^13.1.1",
"next-sitemap": "^3.1.52",
"nextjs-google-analytics": "^2.3.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"slugify": "^1.6.5",
"tailwindcss": "^3.2.4",
"tailwindcss-safe-area": "^0.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@next/eslint-plugin-next": "^13.1.1",
"@svgr/webpack": "^6.5.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"svgo-loader": "^3.0.3",
"url-loader": "^4.1.1"
}
}