-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 2.39 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
74
75
76
{
"name": "component-starter-kit-rsc",
"version": "5.2.2",
"private": true,
"engines": {
"npm": ">=8.19.0",
"node": ">=18.17.0",
"yarn": "please-use-npm",
"pnpm": "please-use-npm"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:test": "export NEXT_PUBLIC_E2E_TEST=true && run-s build:next",
"start": "next start",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,scss}\"",
"uniform:pull": "uniform sync pull",
"uniform:push": "uniform sync push",
"uniform:publish": "uniform context manifest publish",
"postinstall": "cd cli-run && npm install && npm run build",
"cli": "npm i && cd cli-run && node dist/index.mjs"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^16.1.0",
"@contentful/rich-text-types": "^16.2.0",
"@uniformdev/canvas": "19.211.0",
"@uniformdev/canvas-next": "19.211.0",
"@uniformdev/canvas-next-rsc": "19.211.0",
"@uniformdev/canvas-react": "19.211.0",
"@uniformdev/context": "19.211.0",
"@uniformdev/context-next": "19.211.0",
"@uniformdev/context-react": "19.211.0",
"@uniformdev/project-map": "19.211.0",
"@uniformdev/richtext": "19.211.0",
"@vercel/og": "^0.5.7",
"classnames": "^2.3.2",
"daisyui": "^3.9.3",
"framer-motion": "10.16.2",
"next": "14.2.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-multi-carousel": "^2.8.3",
"react-player": "^2.12.0",
"react-responsive-masonry": "2.1.7",
"sass": "1.64.1",
"sharp": "^0.32.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/color": "^3.0.3",
"@types/node": "20.14.8",
"@types/node-fetch": "^2.6.4",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-responsive-masonry": "2.1.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@typescript-eslint/types": "^6.4.0",
"@uniformdev/cli": "19.211.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.47.0",
"eslint-config-custom": "*",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^3.0.2",
"shared": "*",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "5.3.3"
}
}