forked from inertiajs/inertia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 799 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
{
"name": "inertia",
"private": true,
"workspaces": [
"packages/*",
"playgrounds/*"
],
"scripts": {
"test:react": "cd tests && PACKAGE=react npx playwright test",
"test:react:watch": "cd packages/react/test-app && npm run watch",
"test:svelte": "cd tests && PACKAGE=svelte npx playwright test",
"test:svelte:watch": "cd packages/svelte/test-app && npm run watch",
"test:vue": "cd tests && PACKAGE=vue3 npx playwright test",
"test:vue:watch": "cd packages/vue3/test-app && npm run watch"
},
"dependencies": {
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.6.9"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.1"
}
}