-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 905 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 905 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
30
31
32
{
"name": "resume",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:template": "cd packages/template && pnpm build",
"dev": "npm run build:template && cd packages/editor && pnpm dev",
"server:dev": "cd packages/runtime && pnpm dev",
"build:editor": "cd packages/editor && pnpm build",
"build": "npm run build:template && npm run build:editor"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.3.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"sass": "^1.78.0",
"tailwindcss": "^3.4.10",
"vite-plugin-css-injected-by-js": "^3.5.1"
},
"dependencies": {
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"lucide-react": "^0.427.0",
"react-quill-new": "^3.3.0"
}
}