-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "hackdays-2023-lit-fastify",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"pretest": "pnpm run lint && pnpm run build",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "pnpm run build:js",
"prebuild:js": "rimraf eik",
"build:js": "rollup -c",
"prestart": "pnpm run build",
"start": "node --es-module-specifier-resolution=node --experimental-vm-modules .",
"start:watch": "tsc-watch --onSuccess 'pnpm run start' ",
"test": "echo \"no test specified\"",
"lint": "eslint . --ext .ts,.tsx,.js,.cjs",
"lint:fix": "pnpm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/static": "7.0.3",
"@lit-labs/ssr": "3.2.2",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@webcomponents/template-shadowroot": "0.2.1",
"fastify": "4.26.2",
"fastify-plugin": "4.5.1",
"lit": "3.1.2",
"lit-html": "3.1.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@tsconfig/node18": "18.2.4",
"@types/node": "18.19.29",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"rimraf": "5.0.5",
"rollup": "4.9.6",
"tsc-watch": "6.2.0",
"tslib": "2.6.2",
"typescript": "5.3.3"
}
}