-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.26 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "reon-blog",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export -o ./outDir && next-sitemap --config ./next-sitemap.js",
"serve": "serve",
"typecheck": "tsc -p . --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@notionhq/client": "^0.4.11",
"@tailwindcss/typography": "^0.5.2",
"aws-sdk": "^2.1096.0",
"classnames": "^2.3.1",
"daisyui": "^2.13.4",
"dotenv": "^14.2.0",
"framer-motion": "^5",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^8.0.2",
"react-syntax-highlighter": "^15.5.0",
"recoil": "^0.7.1",
"recoil-persist": "^4.1.0",
"rehype-katex": "^6.0.2",
"rehype-react": "^7.0.4",
"rehype-stringify": "^9.0.2",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"unified": "^10.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "17.0.5",
"@types/react": "17.0.38",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/testing-library__jest-dom": "^5.14.2",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.4.5",
"eslint": "^8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.3",
"eslint-plugin-jest-dom": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.1",
"focus-visible": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.4",
"next-sitemap": "^2.5.25",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"serve": "^13.0.2",
"tailwindcss": "^3.0.18",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "4.5.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}