-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "home",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "next build && yarn postbuild",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"prettier:check": "prettier -c src",
"format": "prettier -w src",
"prepare": "husky install",
"release": "standard-version"
},
"dependencies": {
"@react-three/drei": "^8.3.1",
"@react-three/fiber": "^7.0.24",
"autoprefixer": "^10.4.0",
"clsx": "^1.1.1",
"framer-motion": "^5.5.5",
"mdx-bundler": "^8.0.1",
"next": "^12.0.7",
"next-themes": "0.0.15",
"postcss": "^8.4.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-spinners": "^0.11.0",
"three": "^0.135.0"
},
"devDependencies": {
"@types/node": "^17.0.4",
"@types/react": "^17.0.38",
"@types/tailwindcss": "^2.2.4",
"@types/three": "^0.135.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.8",
"eslint": "^8.5.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"gray-matter": "^4.0.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"next-sitemap": "^1.6.203",
"prettier": "^2.5.1",
"rehype-prism-plus": "^1.1.3",
"standard-version": "^9.3.2",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.0.7",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss}": [
"prettier -w"
],
"data/**/*.{md,mdx}": [
"prettier -w"
]
},
"packageManager": "[email protected]"
}