-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "growchief",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:ngrok\" \"npm run dev:next\"",
"dev:ngrok": "node ngrok.js",
"dev:next": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@fullcalendar/core": "^6.1.8",
"@fullcalendar/daygrid": "^6.1.8",
"@fullcalendar/react": "^6.1.8",
"@mantine/core": "^6.0.13",
"@mantine/hooks": "^6.0.13",
"@mantine/modals": "^6.0.13",
"@notionhq/client": "^2.2.5",
"@types/moment": "^2.13.0",
"@types/node": "20.3.1",
"@types/numeral": "^2.0.2",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"eslint": "8.42.0",
"eslint-config-next": "13.4.6",
"micro": "^10.0.1",
"moment": "^2.29.4",
"next": "13.4.6",
"next-seo": "^6.0.0",
"numeral": "^2.0.6",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-loading": "^2.0.3",
"stripe": "^12.9.0",
"stripe-event-types": "^2.3.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.3"
},
"devDependencies": {
"concurrently": "^8.2.0",
"ngrok": "^4.3.3"
}
}