-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:types": "tsc --noemit",
"test:e2e": "playwright test"
},
"dependencies": {
"@emotion/styled": "^11.13.5",
"@markdoc/markdoc": "^0.4.0",
"@mui/material": "^6.1.8",
"@mui/system": "^6.0.1",
"@mui/x-charts": "^7.22.3",
"@sendgrid/mail": "^8.1.4",
"@slack/web-api": "^7.7.0",
"@vercel/blob": "^0.26.0",
"@vercel/functions": "^1.5.0",
"airtable": "^0.12.2",
"clsx": "^2.1.1",
"ical-generator": "^8.0.1",
"next": "14.2.18",
"next-auth": "^4.24.10",
"plausible-tracker": "^0.3.9",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-lite-youtube-embed": "^2.4.0",
"react-papaparse": "^4.4.0",
"react-select": "^5.8.3",
"typescript-json-decoder": "^1.0.11"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@playwright/test": "^1.49.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"autoprefixer": "^10.4.20",
"dotenv-flow": "^4.1.0",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"<rootDir>"
],
"moduleNameMapper": {
"~/src/(.*)$": "<rootDir>/src/$1"
}
}
}