-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cloud-tech-webapp-revamp",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "npx serve out -s",
"start:dev": "next start",
"serve": "npx serve out -s -p 3000",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next out",
"build:analyze": "ANALYZE=true next build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.16",
"contentful": "^10.6.21",
"date-fns": "^2.30.0",
"framer-motion": "^10.16.16",
"gray-matter": "^4.0.3",
"next": "^14.2.30",
"next-seo": "^6.4.0",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-audio-player": "^0.17.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-icons": "^4.12.0",
"react-share": "^4.4.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"tailwindcss": "^3.3.6",
"web-vitals": "^3.5.0",
"swr": "^2.2.4",
"axios": "^1.6.2",
"react-intersection-observer": "^9.5.3",
"react-hotkeys-hook": "^4.4.1",
"fuse.js": "^7.0.0",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.3.3",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"serve": "^14.2.4",
"typescript": "^5.3.3",
"@testing-library/react": "^14.1.2",
"@testing-library/jest-dom": "^6.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"@types/jest": "^29.5.8"
}
}