-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "resume",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "pnpm --parallel --filter {packages/*} --filter {templates/*} dev",
"build": "pnpm --filter {packages/*} --filter {templates/*} build",
"play": "pnpm --filter ./playground dev",
"lint": "eslint . --fix",
"prepublishOnly": "pnpm run build",
"test": "vitest",
"release": "bumpp packages/*/package.json templates/*/package.json --no-verify --commit --push --tag",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"eslint-plugin-prettier": "^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config-react": "^0.40.2",
"@resumejs/components": "workspace:*",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "14.0.0",
"@types/node": "^20.4.9",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"bumpp": "^9.1.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"jsdom": "^22.1.0",
"pnpm": "^8.6.12",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1"
},
"pnpm": {
"overrides": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0"
}
}
}