-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) Β· 1.17 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
{
"name": "myprofile",
"private": false,
"type": "module",
"scripts": {
"dev": "npm run node:copy-data && npm run start",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"cloud:bucket:object": "npx wrangler r2 object",
"node:copy-data": "cp data/data.md.dist public/data.md",
"node:generate:pdf": "ts-node ./node/file-generate.ts resume-default",
"node:generate:card": "ts-node ./node/file-generate.ts user-card-default webp",
"node:group:init": "npm run node:copy-data",
"node:group:pdf": "npm run node:generate:init && npm run node:generate:pdf"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"eslint": "^8.36.0",
"eslint-plugin-yaml": "^0.5.0",
"eslint-plugin-yml": "^1.5.0",
"sass": "^1.62.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"wrangler": "^2.13.0"
},
"dependencies": {
"@markdoc/markdoc": "^0.2.2",
"@tabler/icons-webfont": "^2.34.0",
"@types/marked": "^4.0.8",
"@types/node": "^18.15.2",
"bulma": "^0.9.4",
"marked": "^4.2.12",
"preact": "^10.13.2",
"puppeteer": "^19.7.5",
"unplugin-markdoc": "^0.2.6"
}
}