-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "resume-cook",
"version": "1.0.0",
"description": "resume by lowcode cooking",
"main": "index.js",
"packageManager": "[email protected]",
"scripts": {
"build:shared": "pnpm -C ./packages/shared build",
"dev:shared": "pnpm -C ./packages/shared stub",
"test:shared": "pnpm -C ./packages/shared test",
"coverage:shared": "pnpm -C ./packages/shared coverage",
"dev:lowcode": "pnpm -C ./apps/lowcode dev",
"build:lowcode": "pnpm -C ./apps/lowcode build",
"lint:lowcode": "pnpm -C ./apps/lowcode lint",
"test:lowcode": "pnpm -C ./apps/lowcode test",
"typecheck:lowcode": "pnpm -C ./apps/lowcode typecheck",
"build:rcimage": "pnpm -C ./packages/image build",
"public:all": "pnpm -C ./packages/script public:all",
"test:all": "vitest",
"test:unit": "vitest",
"coverage:all": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HYzihong/lowcode-resume.git"
},
"keywords": [
"lowcode",
"resume-template",
"resume",
"vue3"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HYzihong/lowcode-resume/issues"
},
"homepage": "https://github.com/HYzihong/lowcode-resume#readme",
"devDependencies": {
"@typescript-eslint/parser": "^5.23.0",
"c8": "^7.11.2",
"eslint": "^8.15.0",
"eslint-define-config": "^1.4.0",
"typescript": "^4.6.4",
"unbuild": "^0.7.4",
"vite": "^2.9.9",
"vitest": "^0.12.6"
},
"dependencies": {
"@vitejs/plugin-vue": "^2.3.3",
"vue": "^3.2.33"
}
}