-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "note-duel-web",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"check-types": "tsc --noemit",
"eslint": "eslint src",
"pre-commit": "pnpm run eslint && pnpm run check-types && pnpm run format",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"check-format": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
},
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.17",
"esbuild": "^0.14.54",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-solid": "0.13.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"vite-plugin-pwa": "^0.16.7",
"vite-plugin-solid": "^2.8.2",
"vite-plugin-wasm": "^3.3.0",
"workbox-window": "^7.0.0"
},
"dependencies": {
"@benthecarman/note-duel": "^0.1.7",
"@fontsource-variable/inter": "^5.0.16",
"@kobalte/core": "^0.9.8",
"@kobalte/tailwindcss": "^0.5.0",
"@modular-forms/solid": "^0.18.1",
"@nostr-dev-kit/ndk": "^2.3.3",
"@solidjs/meta": "^0.29.3",
"@solidjs/router": "^0.8.4",
"@thisbeyond/solid-select": "^0.14.0",
"nostr-tools": "^2.1.3",
"solid-js": "^1.8.11",
"undici": "^5.28.2"
},
"engines": {
"node": ">=18"
},
"prettier": {
"printWidth": 80
}
}