-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.8 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
89
90
91
92
93
94
95
96
97
98
{
"name": "@podium/podlet-server",
"version": "1.10.15",
"type": "module",
"bin": {
"podlet": "./cli.js"
},
"exports": {
"./config": "./lib/config.js",
"./schema": "./lib/config-schema.js",
"./plugin": "./lib/plugin.js",
"./build": "./api/build.js",
"./start": "./api/start.js",
"./dev": "./api/dev.js",
"./test": "./api/test.js",
"./i18n": "./api/i18n.js",
".": "./api/index.js"
},
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "NODE_OPTIONS=--conditions=development tap --timeout=60000 --disable-coverage --allow-empty-coverage test/**/*.test.js",
"prepublish": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:podium-lib/podlet-server.git"
},
"homepage": "https://podium-lib.io/",
"description": "Server for building page fragment with web components in a micro frontend architecture.",
"dependencies": {
"@fastify/compress": "6.5.0",
"@fastify/cors": "8.5.0",
"@fastify/etag": "4.2.0",
"@fastify/restartable": "2.3.1",
"@fastify/static": "6.12.0",
"@lingui/cli": "4.11.4",
"@lit-labs/ssr": "3.2.2",
"@lit-labs/ssr-client": "1.1.7",
"@metrics/client": "2.5.3",
"@podium/fastify-podlet": "3.0.11",
"@podium/podlet": "5.1.17",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-replace": "5.0.7",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@webcomponents/template-shadowroot": "0.2.1",
"abslog": "2.4.4",
"ajv": "8.17.1",
"boxen": "7.1.1",
"chalk": "5.3.0",
"chokidar": "3.6.0",
"cli-table": "0.3.11",
"convict": "6.2.4",
"esbuild": "0.24.0",
"fastify": "4.28.1",
"fastify-metrics-js-prometheus": "4.0.0",
"fastify-metrics-js-response-timing": "3.0.0",
"fastify-plugin": "4.5.1",
"http-errors": "2.0.0",
"kill-port": "2.0.1",
"lit": "2.8.0",
"lodash.merge": "4.6.2",
"minify-html-literals": "1.3.5",
"ora": "8.1.0",
"pino": "8.21.0",
"pino-pretty": "10.3.1",
"rollup": "3.29.5",
"semver": "7.6.3",
"tslib": "2.7.0",
"ws": "8.18.0",
"yargs": "17.7.2"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@fastify/cors": "^8.3.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/http-errors": "^2.0.1",
"@types/ws": "^8.5.5",
"@babel/eslint-parser": "^7.11.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"semantic-release": "22.0.12",
"tap": "^18.0.0",
"typescript": "^5.1.6"
}
}