-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "zsnout-learn",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@codemirror/autocomplete": "^6.17.0",
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-sql": "^6.7.0",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.8.1",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.29.1",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@solid-primitives/media": "^2.2.9",
"@sqlite.org/sqlite-wasm": "^3.46.0-build2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.13",
"@thisbeyond/solid-dnd": "^0.7.5",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.0.0",
"@zsnout/tailwind": "^0.1.12",
"autoprefixer": "^10.4.19",
"dompurify": "^3.1.6",
"idb": "^8.0.0",
"jszip": "^3.10.1",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier-plugin-embed": "^0.4.15",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-sql-cst": "^0.11.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"pyodide": "^0.26.2",
"solid-js": "^1.8.18",
"tailwindcss": "^3.4.7",
"ts-fsrs": "^4.0.2",
"valibot": "^0.37.0",
"vite-plugin-pwa": "^0.20.1",
"vite-tsconfig-paths": "^4.3.2"
},
"devDependencies": {
"typescript": "^5.6.2",
"vite": "^5.3.4",
"vite-plugin-solid": "^2.10.2"
},
"prettier": {
"semi": false,
"proseWrap": "always",
"plugins": [
"prettier-plugin-jsdoc",
"prettier-plugin-embed",
"prettier-plugin-sql-cst",
"prettier-plugin-tailwindcss"
],
"trailingComma": "all",
"experimentalTernaries": true,
"embeddedSqlPlugin": "prettier-plugin-sql-cst",
"sqlParamTypes": [
"?",
"?nr",
"$nr",
":name",
"@name",
"$name"
],
"embeddedSqlTags": [
"sql",
"this.sql"
]
}
}