-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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": "timostaudinger.com",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"deploy": "now"
},
"dependencies": {
"@vercel/analytics": "^0.1.6",
"gray-matter": "^4.0.3",
"next": "^13.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-behead": "^3.1.0",
"remark-rehype": "^10.1.0",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:@next/next/recommended"
],
"rules": {
"jsx-a11y/anchor-is-valid": "off"
}
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.1.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"babel-eslint": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "4.6.0"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"jsxBracketSameLine": false,
"trailingComma": "none",
"semi": false,
"printWidth": 80,
"proseWrap": "always"
}
}