-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.16 KB
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
{
"name": "brennan-nextjs-notion",
"version": "0.0.1",
"private": true,
"description": "Homepage that uses the new notion API for a nextjs homepage",
"homepage": "https://www.kelp.nyc",
"repository": "https://github.com/zamiang/kelp",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Brennan Moore",
"email": "brennanmoore@gmail.com",
"url": "https://www.zamiang.com"
},
"main": "pages/_index.tsx",
"scripts": {
"analyze": "ANALYZE=true next build",
"audit-dependencies": "npm audit --audit-level=high --production",
"build": "next build",
"dev": "next -p ${PORT:-3000}",
"lint": "npx eslint './**/*.{js,ts,tsx}'",
"lint:fix": "npx eslint --fix './**/*.{js,ts,tsx}'",
"prettier": "prettier --write \"{pages,components}/**/*.{ts,tsx,js,css}\"",
"prettier:check": "prettier --list-different \"{pages,components}/**/*.{ts,tsx,js,css}\"",
"start": "next start -p ${PORT:-3000}",
"typecheck": "node node_modules/.bin/tsc --project tsconfig.json --noEmit --pretty"
},
"dependencies": {
"@notionhq/client": "0.4.9",
"@types/express": "4.17.13",
"@types/react-headroom": "2.2.2",
"@types/react-linkify": "1.0.1",
"@types/react-router-dom": "5.3.2",
"clsx": "1.1.1",
"express": "4.17.2",
"next": "12.0.7",
"next-compose-plugins": "2.2.1",
"next-fonts": "1.5.1",
"next-secure-headers": "2.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-twitter-embed": "3.0.3",
"react-use": "17.3.2",
"sitemap": "7.1.0",
"slugify": "1.6.4",
"typescript": "4.5.4"
},
"devDependencies": {
"@types/node": "17.0.5",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/eslint-plugin-tslint": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-security": "1.4.0",
"prettier": "2.5.1",
"tslint": "6.1.3"
},
"engines": {
"node": "14.x",
"npm": "8.x"
},
"cacheDirectories": [
".next/cache"
]
}