-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "solid-start-notes-basic",
"type": "module",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"format": "prettier --write ./src",
"lint:es": "eslint ./src",
"lint:types": "./node_modules/.bin/tsc --noEmit",
"esb:bundle": "./node_modules/vinxi/node_modules/.bin/esbuild esb-run.ts --bundle --packages=external --platform=node --format=esm --outfile=./esb-run.mjs",
"esb:run": "pnpm run esb:bundle && node ./esb-run.mjs"
},
"dependencies": {
"@solidjs/meta": "^0.29.3",
"@solidjs/router": "^0.12.4",
"@solidjs/start": "^0.5.10",
"dompurify": "^3.0.9",
"marked": "^12.0.0",
"nanoid": "^5.0.6",
"rxjs": "8.0.0-alpha.14",
"sanitize-html": "^2.12.1",
"solid-js": "^1.8.15",
"unstorage": "^1.10.1",
"vinxi": "^0.2.1"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/sanitize-html": "^2.9.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.2",
"sass": "^1.69.7",
"typescript": "^5.3.3"
}
}