-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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": "letterpad-blog",
"version": "0.0.1",
"author": "Abhishek Saha",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "turbo run clean --parallel",
"dev": "turbo run dev --parallel",
"build": "turbo run build --cache-dir=.turbo",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"e2e:ci": "turbo run e2e:ci",
"e2e": "turbo run e2e",
"codegen": "turbo run codegen --parallel",
"start": "turbo run start --parallel",
"typecheck": "turbo run typecheck",
"prepare": "husky install",
"seed": "turbo run seed"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "10.4.15",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.1.7",
"react-parallax": "^3.5.1",
"tailwindcss": "^3.3.3",
"ts-prune": "^0.10.3",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.11",
"@graphql-codegen/cli": "^5.0.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@google-analytics/data": "^4.4.0",
"@react-spring/web": "^9.7.3",
"@upstash/redis": "^1.28.2",
"@vercel/edge-config": "^1.1.0",
"aos": "^2.3.4",
"axios": "^1.2.0",
"chart.js": "^4.4.2",
"chartjs-adapter-dayjs-4": "^1.0.4",
"class-variance-authority": "^0.7.0",
"dayjs": "^1.11.10",
"hashids": "^2.3.0",
"ioredis": "^5.3.2",
"js-cookie": "^3.0.5",
"next": "14.1.4",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.2.0",
"@react-icons/all-files": "^4.1.0",
"react-spring": "^9.7.3",
"tippy.js": "^6.3.7",
"turbo": "latest",
"use-deep-compare-effect": "^1.8.1",
"uuid": "^9.0.1"
}
}