-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 951 Bytes
/
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
{
"name": "cv",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/devtobi/cv.git"
},
"devDependencies": {
"eslint": "9.14.0",
"@eslint/js": "9.14.0",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"concurrently": "9.1.0",
"globals": "15.12.0",
"ncp": "2.0.0",
"prettier": "3.3.3"
},
"description": "My CV application as a monorepo built using Vue.js and resumed",
"private": true,
"scripts": {
"build": "pnpm run -r build && pnpm run post-build",
"post-build": "mkdir -p dist && concurrently --pad-prefix --kill-others-on-fail -n copy-content,copy-wrapper 'ncp packages/cv-content/dist dist/' 'ncp packages/cv-wrapper/dist dist/'",
"setup": "pnpm run --filter cv-content setup",
"format": "pnpm run --filter cv-content format",
"validate": "pnpm run --filter cv-content validate",
"lint": "pnpm run -r lint",
"fix": "pnpm run -r fix"
}
}