-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "sourceprinter",
"version": "0.9.6",
"private": true,
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "concurrently -n client,server -c blue,green \"vite\" \"node server/index.js\"",
"dev:client": "vite",
"dev:server": "node server/index.js",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"start": "node server/index.js",
"playwright:install": "playwright install chromium",
"playwright:install:deps": "playwright install --with-deps chromium"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/multipart": "^10.0.0",
"@fastify/static": "^9.1.3",
"@fontsource/fira-code": "^5.2.7",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/inconsolata": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/source-code-pro": "^5.2.7",
"archiver": "^7.0.1",
"fastify": "^5.7.2",
"highlight.js": "^11.11.1",
"jszip": "^3.10.1",
"pdf-lib": "^1.17.1",
"playwright": "^1.58.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"daisyui": "^5.5.14",
"eslint": "^10.2.0",
"postcss": "^8.5.13",
"tailwindcss": "^4.1.18",
"vite": "^8.0.10"
}
}