-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 759 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 759 Bytes
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
{
"name": "printer",
"version": "0.0.1",
"dependencies": {
"@types/node": "^20.7.2",
"marked": "^9.0.3",
"prince": "^1.9.14"
},
"devDependencies": {
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/kit": "^1.25.1",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"autoprefixer": "^10.4.16",
"svelte": "^4.0.5",
"svelte-check": "^3.5.2",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.0.0",
"vite": "^4.4.2"
},
"scripts": {
"css": "npx tailwindcss -i ./src/app.css -o ./dist/tailwind.css",
"dev": "npm run css && vite dev",
"build": "npm run css && vite build",
"preview": "npm run css && vite preview",
"start": "node build build/index.js"
},
"type": "module"
}