forked from zSnout/simple-slideshows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"type": "module",
"scripts": {
"dev": "(cd .astro && astro dev)",
"start": "(cd .astro && astro dev)",
"build": "(cd .astro && astro build)",
"preview": "(cd .astro && astro preview)"
},
"dependencies": {
"@astrojs/tailwind": "^3.1.2",
"@tailwindcss/typography": "^0.5.9",
"@types/katex": "^0.16.0",
"@types/markdown-it": "^12.2.3",
"astro": "^2.4.3",
"katex": "^0.16.7",
"markdown-it": "^13.0.1",
"markdown-it-texmath": "^1.0.0",
"prettier": "^2.8.8",
"prettier-plugin-latex": "^1.2.4",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.2"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleAttributePerLine": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
}