-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "routify-site-v3",
"type": "module",
"imports": {
"#cmp/*": "./src/components/*",
"#root/*": "./*"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@roxi/routify": "^3.0.0-next.228",
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"mdsvex": "^0.11.0",
"npm-run-all": "^4.1.5",
"polykit": "^0.2.1-next.1",
"spank": "^2.0.0",
"svelte": "^4.1.1",
"svelte-prism": "^1.1.6",
"vite": "^4.0.0"
},
"prettier": {
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid",
"semi": false,
"useTabs": false,
"tabWidth": 4,
"printWidth": 90,
"svelteSortOrder": "options-scripts-markup-styles",
"svelteAllowShorthand": true,
"svelteBracketNewLine": false,
"svelteIndentScriptAndStyle": true
}
}