-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "blog-notion",
"version": "0.1.0",
"private": true,
"author": "[email protected]",
"scripts": {
"dev": "next dev",
"copy": "mkdir -p lib/shiki && cp -r node_modules/shiki/{languages,themes} lib/shiki/",
"build": "npm run copy && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@next/mdx": "13.4.1",
"@notionhq/client": "^2.2.4",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-navigation-menu": "^1.1.2",
"await-to-js": "^3.0.0",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"framer-motion": "^10.11.6",
"next": "13.4.1",
"probe-image-size": "^7.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.4.0",
"shiki": "^0.14.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/node": "18.14.1",
"@types/probe-image-size": "^7.2.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "^10.4.13",
"eslint": "8.35.0",
"eslint-config-next": "13.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"tailwindcss": "^3.2.7",
"typescript": "4.9.5"
}
}