-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1002 Bytes
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": "jaisharma.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"clean": "shx rm -rf .next .vercel",
"format": "prettier --ignore-path .gitignore --write ."
},
"dependencies": {
"@chakra-ui/react": "^2.4.4",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/monoton": "^4.2.2",
"framer-motion": "^8.0.2",
"next": "^14.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^3.11.0"
},
"devDependencies": {
"@types/node": "^16.4.2",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"shx": "^0.3.3",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{ts,tsx}": "prettier --write"
}
}