-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 909 Bytes
/
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
{
"name": "playground",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build:esbuild": "node build.js",
"build:rollup": "npx rollup -c"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@preact/signals": "^1.2.0",
"esbuild": "^0.18.11",
"express": "^4.18.2",
"preact": "^10.15.1",
"preact-render-to-string": "^6.1.0",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.1.2",
"rollup": "^3.26.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"@barelyhuman/preact-island-plugins": "workspace:*"
}
}