forked from innocenzi/laravel-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 895 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
29
30
31
32
{
"private": true,
"scripts": {
"build": "pnpm -C vite-plugin-laravel run build",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:serve": "pnpm -C docs run serve",
"release": "bumpp vite-plugin-laravel/package.json --push --tag --commit \"release: v\"",
"test": "npm run test:php && npm run test:vite",
"test:php": ".\\vendor\\bin\\pest",
"test:vite": "vitest --run"
},
"devDependencies": {
"@innocenzi/eslint-config": "^0.10.0",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"bumpp": "^7.1.1",
"eslint": "^8.16.0",
"typescript": "^4.7.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
}
}
}