-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "solid-start-sse-chat",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"lint:types": "./node_modules/.bin/tsc --noEmit",
"lint:es": "eslint ./src",
"format": "prettier --write ./src ./test/test ./test/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerreynders/solid-start-sse-chat"
},
"keywords": [],
"author": "Peer Reynders",
"license": "MIT",
"homepage": "https://github.com/peerreynders/solid-start-sse-chat#readme",
"bugs": {
"url": "https://github.com/peerreynders/solid-start-sse-chat/issues"
},
"dependencies": {
"@solidjs/meta": "^0.29.3",
"@solidjs/router": "^0.13.2",
"@solidjs/start": "1.0.0-rc.0",
"nanoid": "^5.0.7",
"solid-js": "^1.8.17",
"vinxi": "^0.3.11"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}