-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.26 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
{
"name": "solid-hackernews",
"version": "0.0.0",
"description": "A Solid Implementation of the Hacker News Example App",
"main": "index.js",
"type": "module",
"scripts": {
"start": "serve public -l 3000 -s & rollup -w -c",
"build": "rollup -c --environment production",
"serve": "serve public -l 3000 -s",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs/solid-hackernews.git"
},
"keywords": [
"Solid",
"Hacker News",
"example"
],
"author": "Ryan Carniato",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidjs/solid-hackernews/issues"
},
"homepage": "https://hackernews-csr.ryansolid.workers.dev/",
"dependencies": {
"@solidjs/router": "0.10.1",
"solid-js": "1.8.7"
},
"devDependencies": {
"@babel/core": "7.23.5",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@open-wc/rollup-plugin-html": "^1.2.5",
"@rollup/plugin-alias": "5.1.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"babel-preset-solid": "1.8.6",
"rollup": "4.7.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.2.1",
"wrangler": "^3.19.0"
}
}