-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "theomesnil.com",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"lint": "next lint && npx prettier --write --ignore-unknown ./app && tsc --noEmit",
"prepare": "husky",
"start": "next dev"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"framer-motion": "^11.11.17",
"next": "^15.0.3",
"next-themes": "^0.4.3",
"react": "19.0.0-rc-65a56d0e-20241020",
"react-dom": "19.0.0-rc-65a56d0e-20241020",
"react-icons": "^5.4.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/node": "22.9.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "9.15.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "5.6.3"
},
"lint-staged": {
"**/*": "yarn lint"
}
}