-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.15 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
79
{
"name": "kaperscrewe",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:local": "doppler run -- npm run build",
"preview": "npm run build:local && doppler run -- next start",
"lint": "npx eslint -c ./config/eslint.config.mjs --fix",
"ts": "tsc",
"start": "doppler run -- npm run dev",
"clean": "rm -rf .next"
},
"devDependencies": {
"@notionhq/client": "^2.2.15",
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.3.3",
"@types/react-big-calendar": "^1.8.9",
"@types/react-dom": "^18.3.0",
"@types/showdown": "^2.0.6",
"eslint": "^9.6.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.39",
"postcss-advanced-variables": "^4.0.0",
"postcss-hexrgba": "^2.1.0",
"postcss-load-config": "^6.0.1",
"postcss-nesting": "^12.1.5",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"stylelint": "^16.6.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"stylelint-use-nesting": "^5.1.1"
},
"dependencies": {
"@clerk/nextjs": "^5.2.2",
"@devexpress/dx-react-core": "^4.0.8",
"@devexpress/dx-react-scheduler": "^4.0.8",
"@devexpress/dx-react-scheduler-material-ui": "^4.0.8",
"@sentry/nextjs": "^8.14.0",
"calendar-link": "^2.6.0",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"eslint-plugin-prettier": "^5.2.1",
"fathom-client": "^3.7.0",
"next": "^14.2.4",
"notion-to-md": "^3.1.1",
"postcss-loader": "^8.1.1",
"react": "^18.3.1",
"react-big-calendar": "^1.13.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.1",
"sharp": "^0.33.4",
"showdown": "^2.1.0"
},
"overrides": {
"@mui/x-date-pickers": {
"date-fns": "^3.6.0"
},
"@typescript-eslint/eslint-plugin": {
"eslint": "^9.3.0"
},
"eslint-config-next": {
"eslint": "^9.3.0"
},
"eslint-plugin-react": {
"eslint": "^9.3.0"
},
"eslint-plugin-react-hooks": {
"eslint": "^9.3.0"
}
}
}