-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1003 Bytes
/
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
{
"name": "parked",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next && rm -rf coverage",
"dev": "next dev --port=3002",
"lint": "next lint",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@tek/ui": "workspace:*",
"@tek/utils": "workspace:*",
"@vercel/analytics": "^0.1.11",
"clsx": "^1.2.0",
"fathom-client": "^3.6.0",
"next": "^13.4.4",
"next-seo": "^5.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tek/eslint-config": "workspace:*",
"@tek/jest-config": "workspace:*",
"@tek/ts-config": "workspace:*",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.0.28",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}