forked from episerver/cms-visual-builder-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "cms-visual-builder-hello-world",
"version": "0.1.0",
"private": true,
"scripts": {
"codegen": "graphql-codegen",
"dev": "next dev --experimental-https",
"build": "next build",
"build:all": "yarn build:communication && yarn codegen && yarn build",
"build:communication": "vite build --config vite-ci.config.ts",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.10.4",
"clsx": "^2.1.1",
"dom-to-image-more": "^3.5.0",
"graphql": "^16.8.1",
"html2canvas-pro": "^1.5.8",
"next": "^15.0.3",
"object-hash": "^3.0.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@parcel/watcher": "^2.4.1",
"@types/node": "^20",
"@types/object-hash": "^3.0.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tailwindcss-base-font-size": "^1.0.1",
"typescript": "^5",
"vite": "^5.4.11"
}
}