forked from samuelkraft/notion-blog-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "nextjs-notion-blog",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"predeploy": "yarn build && vercel",
"deploy": "vercel --prod"
},
"author": "Samuel Kraft <samuelkraft@me.com> (https://github.com/samuelkraft)",
"contributors": [
"Samuel Kraft <samuelkraft@me.com> (https://github.com/samuelkraft)",
"Adam Beleko <bossbele@larven.io> (https://github.com/BossBele)"
],
"dependencies": {
"@notionhq/client": "^2.2.3",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@next/eslint-plugin-next": "^13.4.16",
"@swc/core": "^1.4.0",
"@swc/jest": "^0.2.36",
"@testing-library/react": "^14.2.1",
"babel-jest": "^29.7.0",
"encoding": "^0.1.13",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0"
}
}