-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "nextjs-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.12.0",
"npm": ">=8.6.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"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": {
"clsx": "^2.0.0",
"file-loader": "^6.2.0",
"framer-motion": "^10.16.15",
"markdownlint-cli": "^0.37.0",
"next": "^14.0.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.6",
"tailwindcss-safe-area": "^0.4.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@next/eslint-plugin-next": "^14.0.3",
"@svgr/webpack": "^8.1.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.9",
"svgo-loader": "^4.0.0",
"url-loader": "^4.1.1"
}
}