-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 KB
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
{
"name": "solid-start-sse-counter",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"postbuild": "sed -i 's/assets_handler).use(comp/assets_handler).use(solidStartSseSupport).use(comp/g' dist/server.js",
"start": "solid-start start",
"lint:types": "./node_modules/.bin/tsc --noEmit",
"lint:es": "eslint ./src",
"format": "prettier --write ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerreynders/solid-start-sse-counter"
},
"keywords": [],
"author": "Peer Reynders",
"license": "MIT",
"homepage": "https://github.com/peerreynders/solid-start-sse-counter#readme",
"bugs": {
"url": "https://github.com/peerreynders/solid-start-sse-counter/issues"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"esbuild": "^0.14.54",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"solid-start-node": "^0.2.19",
"typescript": "^4.9.4",
"vite": "^4.1.4"
},
"dependencies": {
"@solidjs/meta": "^0.28.2",
"@solidjs/router": "^0.7.0",
"solid-js": "^1.6.11",
"solid-start": "^0.2.23",
"undici": "^5.15.1"
},
"engines": {
"node": ">=16.8"
}
}