-
-
Notifications
You must be signed in to change notification settings - Fork 661
Expand file tree
/
Copy pathpackage.json
More file actions
180 lines (180 loc) · 4.84 KB
/
Copy pathpackage.json
File metadata and controls
180 lines (180 loc) · 4.84 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "@silexlabs/silex",
"version": "0.0.0-dev",
"description": "Free and easy website builder for everyone.",
"author": "Alex Hoyau (https://lexoyo.me/)",
"license": "AGPL-3.0",
"main": "dist/server/server/index.js",
"engines": {
"node": ">=24"
},
"files": [
"dist/",
"editor/",
"server/",
"common/",
"grapesjs-plugins/",
".env.default",
"public",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/silexlabs/Silex.git"
},
"homepage": "https://www.silex.me",
"bugs": {
"url": "https://short.silex.me/community"
},
"keywords": [
"page builder",
"cloud",
"SaaS",
"template builder",
"web page editor",
"html5 editor",
"free",
"open source",
"online editor",
"silex website",
"free",
"website builder",
"online",
"silex website builder",
"silex.me",
"silex",
"html editor",
"free website builder",
"silex cms",
"online website builder open source",
"Create a free website",
"Wix.com open source alternative",
"designer",
"webdesigner",
"web master",
"webmaster",
"open source CMS",
"CSS",
"HTML",
"Javascript",
"WYSIWYG",
"silex",
"jekyll"
],
"scripts": {
"build": "run-s build:client build:server build:public",
"build:client": "webpack --config webpack.config.js",
"build:server": "tsc -p tsconfig-server-release.json && tsc-alias -p tsconfig-server-release.json",
"build:public": "node scripts/copy-assets.mjs",
"start": "node dist/server/server/",
"start:debug": "cross-env SILEX_DEBUG=true nodemon --watch dist/server dist/server/server/",
"dev": "pnpm run build:server && pnpm run build:client && run-p watch start:debug",
"watch": "npm-watch",
"lint": "eslint \"{editor,server,common}/**/*.ts\"",
"lint:fix": "pnpm lint --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:plugins": "pnpm -r --filter \"./grapesjs-plugins/*\" run test",
"lint:plugins": "pnpm -r --filter \"./grapesjs-plugins/*\" run lint",
"build:plugins": "pnpm -r --filter \"./grapesjs-plugins/*\" run build",
"prepare": "husky",
"doc": "scripts/generate-contributors-doc.js | scripts/insert-in-readme.js contributors"
},
"watch": {
"build:client": {
"patterns": [
"editor/",
"common/",
"grapesjs-plugins/",
"editor/css/",
"editor/html/"
],
"extensions": "ejs,js,scss,ts"
},
"build:server": {
"patterns": [
"server/",
"common/"
],
"extensions": [
"ts"
]
}
},
"dependencies": {
"@apollo/client": "^4.2.3",
"@fontsource/ubuntu": "^5.2.8",
"@fortawesome/fontawesome-free": "7.3.0",
"@types/archiver": "^8.0.0",
"adm-zip": "0.5.18",
"archiver": "^8.0.0",
"basic-ftp": "^6.0.1",
"body-parser": "2.3.0",
"component-emitter": "^2.0.0",
"compression": "1.8.1",
"cookie-parser": "1.4.7",
"cookie-session": "2.1.1",
"cors": "2.8.6",
"cross-env": "10.1.0",
"dedent": "^1.7.2",
"dedent-js": "^1.0.1",
"deepmerge": "^4.3.1",
"dotenv": "^17.4.2",
"express": "5.2.1",
"express-force-ssl": "0.3.2",
"formidable": "3.5.4",
"fs-extra": "^11.3.5",
"grapesjs": "^0.23.2",
"grapesjs-blocks-basic": "1.0.2",
"grapesjs-custom-code": "1.0.2",
"grapesjs-parser-postcss": "^1.0.3",
"grapesjs-plugin-forms": "2.0.6",
"grapesjs-style-bg": "^2.0.2",
"grapesjs-style-border": "1.0.4",
"grapesjs-style-filter": "^1.0.2",
"html-minifier": "^4.0.0",
"lit": "^3.3.3",
"lit-html": "3.3.3",
"locale": "0.1.0",
"mkdirp": "3.0.1",
"node-fetch": "3.3.2",
"node_modules-path": "2.4.0",
"normalize.css": "8.0.1",
"npm-run-all": "^4.1.5",
"object-path": "0.11.8",
"sass": "1.101.0",
"serve-static": "2.2.1",
"specificity": "^1.0.0",
"uuid": "^14.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/express": "5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "26.0.1",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"connect-livereload": "^0.6.1",
"css-loader": "^7.1.4",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"html-webpack-plugin": "^5.6.7",
"husky": "^9.1.7",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"livereload": "0.10.3",
"mini-css-extract-plugin": "^2.10.2",
"nodemon": "3.1.14",
"npm-watch": "0.13.0",
"sass-loader": "^17.0.0",
"terser-webpack-plugin": "^5.6.1",
"ts-jest": "29.4.11",
"ts-loader": "9.6.2",
"tsc-alias": "^1.8.17",
"typescript": "6.0.3",
"webpack": "5.108.2",
"webpack-cli": "7.1.0"
},
"packageManager": "pnpm@10.34.4"
}