-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"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.2.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"tailwindcss-safe-area": "^0.5.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.57.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.2",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.3.0",
"svgo-loader": "^4.0.0",
"url-loader": "^4.1.1"
}
}