This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "orizuru",
"private": true,
"author": "Lucas Bozzo",
"homepage": "lucasbozzo.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@tippyjs/react": "^4.2.0",
"autoprefixer": "^10.1.0",
"framer-motion": "^2.9.4",
"next": "^10.0.2",
"polished": "^4.0.3",
"postcss": "^8.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"swr": "^0.3.11",
"tabler-icons-react": "^1.32.0",
"tailwindcss": "^2.0.2",
"typed.js": "^2.0.11"
},
"devDependencies": {
"@mdx-js/loader": "^1.6.19",
"@next/mdx": "^9.5.5",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.2",
"@types/react": "^16.9.53",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"react-icons": "^4.1.0",
"typescript": "^4.0.3"
}
}