-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "hugocxl.me",
"version": "3.2.8",
"private": true,
"description": "My personal site",
"homepage": "https://hugocxl.me",
"repository": {
"type": "git",
"url": "https://github.com/hugocxl/hugocxl.me"
},
"scripts": {
"dev": "rm -rf .next && next dev",
"start": "next start",
"build": "next build",
"test": "pnpm test:e2e",
"test:e2e": "pnpm cypress:run",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint --cache --ignore-path .gitignore .",
"lint:check": "pnpm lint",
"lint:fix": "pnpm lint --fix",
"format": "prettier --cache --ignore-path .gitignore .",
"format:check": "pnpm format --list-different",
"format:fix": "pnpm format --write",
"types": "tsc",
"types:check": "pnpm types --noEmit",
"static:check": "pnpm lint:check && pnpm format:check && pnpm types:check",
"static:fix": "pnpm lint:fix && pnpm format:fix",
"setup:env": "npx vercel env pull .env.local",
"prepare": "husky install && panda codegen",
"postversion": "git push && git push --tags",
"update:release": "pnpm version --allow-same-version=false --git-tag-version=true --new-version $v"
},
"dependencies": {
"@notionhq/client": "^2",
"@tabler/icons": "^2",
"@tabler/icons-react": "^2",
"@vercel/analytics": "^1",
"next": "^14",
"notion-compat": "^6",
"notion-types": "^6",
"notion-utils": "^6",
"react": "^18",
"react-dom": "^18",
"react-notion-x": "^6",
"react-tweet": "^3",
"sharp": "^0"
},
"devDependencies": {
"@next/env": "^14",
"@pandacss/dev": "^0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"cypress": "^13",
"eslint": "^8",
"eslint-config-next": "^13",
"eslint-config-prettier": "^9",
"eslint-config-standard": "^17",
"eslint-config-standard-react": "^13",
"eslint-plugin-cypress": "^2",
"eslint-plugin-import": "^2",
"eslint-plugin-n": "^16",
"eslint-plugin-promise": "^6",
"eslint-plugin-react": "^7",
"husky": "^8",
"lint-staged": "^15",
"prettier": "^3",
"typescript": "^5"
}
}