-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "harsh-web-3",
"version": "0.1.0",
"private": true,
"author": {
"name": "Harsh Goel",
"email": "[email protected]",
"url": "https://harshgoel.me"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint --fix .",
"format": "prettier --write ./**/*.{js,jsx,ts,tsx,css,md,json} --config ./.prettierrc --ignore-path .gitignore",
"check-format": ". --ignore-path .gitignore"
},
"dependencies": {
"autoprefixer": "^10.2.1",
"axios": "^0.21.2",
"eslint-config-next": "^13.4.19",
"framer-motion": "1.11.1",
"mongodb": "^3.6.3",
"next": "^13.4.19",
"postcss": "^8.2.10",
"postcss-preset-env": "^9.1.1",
"react": "^18.2.0",
"react-calendly": "^1.3.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.9",
"react-tilt": "^0.1.4",
"react-wordcloud": "^1.2.7",
"tailwindcss": "^2.0.2",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
},
"devDependencies": {
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.22",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}