-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.56 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
{
"name": "abhigyantrips-notes",
"version": "1.0.0",
"private": true,
"description": "A Notion space for all of Abhigyan's notes.",
"author": "Abhigyan Trips <[email protected]>",
"repository": "abhigyantrips/notes",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "vercel deploy",
"deps": "run-s deps:*",
"deps:update": "[ -z $GITHUB_ACTIONS ] && yarn add notion-client notion-types notion-utils react-notion-x || echo 'Skipping deps:update on CI'",
"deps:link": "[ -z $GITHUB_ACTIONS ] && yarn link notion-client notion-types notion-utils react-notion-x || echo 'Skipping deps:link on CI'",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"test": "run-p test:*",
"test:lint": "eslint '**/*.{ts,tsx}'",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"dependencies": {
"@fisch0920/use-dark-mode": "^2.4.0",
"@keyvhq/core": "^1.6.9",
"@keyvhq/redis": "^1.6.10",
"@next/bundle-analyzer": "^13.1.6",
"@react-icons/all-files": "^4.1.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"expiry-map": "^2.0.0",
"got": "^12.0.3",
"isomorphic-unfetch": "^3.1.0",
"lodash.omit": "^4.5.0",
"lqip-modern": "^1.2.0",
"next": "^12.1.1",
"next-api-og-image": "^2.2.1",
"next-optimized-images": "^2.6.2",
"node-fetch": "^2.6.1",
"notion-client": "^6.12.6",
"notion-types": "^6.12.6",
"notion-utils": "^6.12.6",
"p-map": "^5.3.0",
"p-memoize": "^6.0.1",
"raf": "^3.4.1",
"random": "^3.0.6",
"react": "^17.0.2",
"react-body-classname": "^1.3.1",
"react-dom": "^17.0.2",
"react-notion-x": "^6.12.7",
"react-tweet-embed": "^2.0.0",
"react-use": "^17.3.2",
"rss": "^1.2.2"
},
"devDependencies": {
"@types/lodash.omit": "^4.5.6",
"@types/node": "^17.0.23",
"@types/react": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vercel/analytics": "^0.1.4",
"cross-env": "^7.0.2",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"overrides": {
"cacheable-request": {
"keyv": "npm:@keyvhq/core@~1.6.6"
}
}
}