-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "agravelot.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx --fix"
},
"dependencies": {
"@tailwindcss/jit": "^0.1.5",
"clsx": "^1.1.1",
"framer-motion": "^3.2.1",
"ga-4-react": "^0.1.281",
"gray-matter": "^4.0.2",
"next": "^10.0.0",
"next-mdx-remote": "^2.1.3",
"prism-react-renderer": "^1.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.1.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"sass": "^1.27.0"
},
"devDependencies": {
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.0.5",
"@types/node": "^14.14.5",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"autoprefixer": "^10.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"postcss": "^8.2.2",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.2",
"typescript": "^4.0.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"prettier --write"
]
}
}