-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "samuelp.ing",
"version": "4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "npm run build && next export",
"old-lint": "eslint . --ignore-path ./.gitignore",
"old-lint-fix": "eslint --fix . --ignore-path ./.gitignore",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc.js --ignore-path ./.gitignore"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"esbuild": "^0.19.10",
"framer-motion": "^4.1.17",
"mdx-bundler": "^10.0.1",
"next": "^14.0.4",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.7",
"autoprefixer": "^10.4.16",
"eslint": "^7.32.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-tailwindcss": "^3.7.1",
"postcss": "^8.4.32",
"prettier": "^2.8.1",
"tailwindcss": "^3.4.0"
}
}