-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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.new",
"private": true,
"license": "MIT",
"author": "Damian Tarnawski <[email protected]>",
"contributors": [],
"type": "module",
"scripts": {
"postinstall": "node add-ts-nocheck.cjs",
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start",
"typecheck": "tsc --noEmit",
"format": "prettier -w src/**/*.{js,ts,json,css,tsx,jsx}",
"lint": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}"
},
"dependencies": {
"@solid-primitives/props": "^3.0.1",
"@solidjs/meta": "^0.28.2",
"@solidjs/router": "^0.5.0",
"@unocss/preset-wind": "^0.46.3",
"@unocss/reset": "^0.46.3",
"clsx": "^1.2.1",
"solid-devtools": "^0.20.1",
"solid-js": "^1.6.1",
"solid-start": "^0.2.5",
"undici": "^5.12.0",
"unocss": "^0.46.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"prettier": "2.7.1",
"solid-start-node": "^0.2.5",
"typescript": "^4.8.4",
"vite": "^3.2.3"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}