forked from silexlabs/Silex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.76 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.76 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
{
"name": "silex-meta",
"version": "1.0.0",
"description": "Meta repo for Silex development",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/silexlabs/silex-meta.git"
},
"type": "module",
"engines": {
"node": ">=16"
},
"keywords": [
"contribution",
"silex",
"website builder",
"Silex website builder"
],
"author": "lexoyo",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/silexlabs/silex-meta#readme",
"scripts": {
"preinstall": "if ! echo \"$npm_execpath\" | grep -q \"yarn\"; then echo '🚫 Please use yarn install, not npm install! Now before you do yarn install, you need delete all node_modules and packages/**/node_modules directories.'; exit 1; fi",
"build": "scripts/build-packages.js",
"postinstall": "$npm_execpath run build",
"start": "node packages/silex-lib/",
"release:dry": "scripts/release.sh --dry-run",
"release:pre": "scripts/release.sh",
"release:minor": "scripts/release.sh --release",
"test": "scripts/check-internal-deps.js",
"count": "cloc packages --exclude-dir node_modules,doc,strapi,test,dist,mock --exclude-ext=md,xml,pug,njk,ini,scss,css,json,svg,yaml,yml,html",
"doc": "scripts/generate-submodules-doc.js | scripts/insert-in-readme.js submodules && $npm_execpath run count | scripts/insert-in-readme.js count --code",
"exec": "scripts/exec.js",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@octokit/rest": "^21.1.1",
"cloc": "^2.0.0-cloc",
"dependency-graph": "^1.0.0",
"dotenv": "^16.5.0",
"glob": "^11.0.2",
"husky": "^9.1.7",
"js-ini": "^1.6.0",
"npm-check-updates": "^18.0.1"
},
"dependencies": {
"grapesjs-cli": "^4.1.3"
}
}