-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.44 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": "theme-builder",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"copy": "npm-run-all copy:*",
"copy:404": "ncp dist/index.html dist/404.html",
"copy:customization": "ncp dist/index.html dist/customization.html",
"copy:playground": "ncp dist/index.html dist/playground.html",
"copy:demo": "ncp dist/index.html dist/demo.html",
"build": "tsc && vite build",
"dev": "vite --open",
"generate:parse-options": "node scripts/generateParseOptions.js",
"generate:tailwind": "tailwindcss -i ./src/tailwind.css -o ./src/components/Editor/tailwind.generated.css --full --minify",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"postbuild": "npm run copy",
"prepare": "husky",
"preview": "vite preview"
},
"dependencies": {
"@craftjs/core": "^0.2.11",
"@db-ui/react-components": "0.5.2",
"@redux-devtools/extension": "^3.3.0",
"@tiptap/extension-color": "^2.9.1",
"@tiptap/extension-text-style": "^2.9.1",
"@tiptap/extension-underline": "^2.9.1",
"@tiptap/pm": "^2.9.1",
"@tiptap/react": "^2.9.1",
"@tiptap/starter-kit": "^2.9.1",
"@types/node": "^22.9.0",
"ace-builds": "1.36.4",
"apca-w3": "^0.1.9",
"chroma-js": "^3.1.2",
"dompurify": "^3.1.7",
"hsluv": "^1.0.1",
"html-react-parser": "^5.1.18",
"husky": "9.1.6",
"i18next": "23.16.4",
"i18next-browser-languagedetector": "8.0.0",
"i18next-http-backend": "2.6.2",
"jszip": "^3.10.1",
"lz-string": "1.5.0",
"prettier": "3.3.3",
"react": "^18.3.0",
"react-ace": "13.0.0",
"react-dom": "^18.3.1",
"react-i18next": "15.1.1",
"react-router-dom": "6.28.0",
"traverse": "^0.6.10",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/apca-w3": "^0.1.3",
"@types/chroma-js": "^2.4.4",
"@types/dompurify": "^3.0.5",
"@types/react": "^18.3.12",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18.3.1",
"@types/traverse": "^0.6.37",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"sass": "^1.80.6",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}