forked from LiveDuo/destack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "destack",
"description": "Page builder based on Next.js, Grapes.js & Tailwind CSS with zero-config deployment to Vercel",
"version": "3.0.8",
"main": "./build/browser/index.js",
"homepage": "https://destack-page.vercel.app",
"bin": "./server/react.bin.js",
"keywords": [
"grapesjs",
"nextjs",
"builder",
"nocode",
"landing page",
"tailwind"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"build:react": "../lib/node_modules/.bin/tsc ./server/react.ts --outDir ./build/custom --esModuleInterop true --skipLibCheck",
"start:react": "node ./build/custom/react.js",
"export": "npm run prepublishOnly && zip -r export.zip . && npm run postpublish",
"check:types": "../lib/node_modules/.bin/tsc --noEmit",
"publish:alpha": "node scripts/patch-version.js patch alpha && npm publish --tag alpha && node scripts/patch-version.js undo",
"publish:beta": "node scripts/patch-version.js patch beta && npm publish --tag beta && node scripts/patch-version.js undo",
"prepublishOnly": "npm run check:types && cp ../README.md README.md && rm -rf build && npm run build && npm run build:react",
"postpublish": "rm -rf README.md"
},
"license": "ISC",
"dependencies": {
"@craftjs/core": "^0.2.0-beta.8",
"@craftjs/layers": "^0.2.0-beta.8",
"@heroicons/react": "^2.0.12",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-select": "^1.1.1",
"@radix-ui/react-tooltip": "^1.0.0",
"classnames": "2.2.6",
"concurrently": "^6.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"formidable": "^1.2.2",
"grapesjs": "^0.19.5",
"is-svg-path": "^1.0.2",
"node-html-parser": "^6.1.1",
"postcss": "^8.4.18",
"react-color": "2.17.3",
"ts-node": "^10.4.0",
"yargs": "^17.3.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/classnames": "^2.3.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/formidable": "^1.2.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.2.6",
"axios": "^1.2.2",
"esbuild": "^0.18.2",
"nodemon": "^3.0.1",
"rollup": "^2.45.2",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-import-css": "^2.0.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-re": "^1.0.7",
"rollup-plugin-svg-import": "^1.5.1",
"tailwindcss": "^3.2.4",
"typescript": "^5.1.3"
},
"peerDependencies": {
"next": "*",
"react": "*",
"react-dom": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/LiveDuo/destack.git"
},
"files": [
"build",
"themes"
]
}