-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"name": "community-techtank",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"ci:test": "vitest run",
"dc-run-dev": "docker compose -f ./compose.dev.yml up",
"dc-build-dev": "docker compose -f ./compose.dev.yml build",
"dc-run-prod": "docker compose -f ./compose.prod.yml up",
"dc-build-prod": "docker compose -f ./compose.prod.yml build"
},
"keywords": [
"Tech Tank",
"Community"
],
"author": "TechTank, Nonso O.",
"license": "MIT",
"dependencies": {
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.58.0",
"@shikijs/transformers": "^1.21.0",
"clsx": "^2.1.1",
"groq": "^3.58.0",
"next": "^14.2.13",
"next-mdx-remote": "^5.0.0",
"next-sanity": "^9.5.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"sanity": "^3.58.0",
"sanity-plugin-cloudinary": "^1.1.3",
"sanity-plugin-markdown": "^5.0.0",
"sharp": "^0.33.5",
"shiki": "^1.21.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/browser": "^2.1.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.0",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"typescript": "^5",
"typescript-eslint": "^8.7.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1",
"zod": "^3.23.8"
}
}