generated from silexlabs/silex-plugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.62 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
{
"name": "@silexlabs/silex-cms",
"version": "0.1.2",
"description": "Silex plugin",
"main": "dist/server.js",
"module": "dist/client.js",
"files": [
"dist",
"src",
"LICENSE",
"rollup.client.config.mjs",
"rollup.server.config.mjs",
"tsconfig.client.json",
"tsconfig.server.json"
],
"scripts": {
"postinstall": "$npm_execpath run build",
"start": "silex --client-config ./dist/client.js --server-config `pwd`/dist/server.js",
"dev": "SILEX_CLIENT_CONFIG=./client-test.js SILEX_SERVER_CONFIG=`pwd`/dist/server.js SILEX_PORT=3002 SILEX_DEBUG=true SILEX_EXPRESS_JSON_LIMIT=1gb SILEX_FS_ROOT=`pwd`/11ty-test/storage SILEX_FS_HOSTING_ROOT=`pwd`/11ty-test/hosting nodemon `node_modules @silexlabs/silex`/@silexlabs/silex & $npm_execpath run build:watch",
"build": "$npm_execpath run build:client && $npm_execpath run build:server",
"build:watch": "nodemon -e ts,js --watch src -x \"$npm_execpath run build\"",
"build:client": "rollup -c rollup.client.config.mjs",
"build:server": "rollup -c rollup.server.config.mjs",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "$npm_execpath run lint -- --fix",
"test": "jest --rootDir src --config jest.config.js",
"test:watch": "$npm_execpath run test -- --watch",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node_modules-path": "^2.0.8",
"nodemon": "^3.1.9",
"ts-jest": "^29.2.5"
},
"peerDependencies": {
"@silexlabs/silex": "3.0.3",
"grapesjs": "^0.21.10",
"lit-html": "*"
},
"dependencies": {
"@humanwhocodes/retry": "^0.4.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@silexlabs/grapesjs-data-source": "^0.0.127",
"dedent": "^1.5.3",
"deepmerge": "^4.3.1",
"rollup": "^4.32.1",
"rollup-plugin-tslint": "^0.2.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"author": "lexoyo",
"license": "MIT",
"keywords": [
"silex",
"plugin",
"11ty",
"eleventy",
"liquid",
"liquidjs",
"static site generator",
"ssg",
"design",
"web design",
"webdesign",
"directus",
"strapi",
"supabase",
"dato cms",
"headless cms",
"graphql"
]
}