-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 916 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 916 Bytes
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
{
"private": true,
"type": "module",
"scripts": {
"watch": "npx vite",
"dev": "vite build --mode development --minify false --sourcemap",
"dev:watch": "vite build --mode development --minify false --sourcemap --watch",
"prod": "vite build --mode production",
"prod:watch": "vite build --mode production --watch",
"lint": "npx eslint resources/js",
"lint:fix": "npx eslint resources/js --fix",
"eslint": "npm run lint"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@statamic/cms": "file:./vendor/statamic/cms/resources/dist-package",
"@vitejs/plugin-vue": "^6.0.5",
"eslint": "^10.2.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"laravel-vite-plugin": "^3.0.1",
"vite": "^8.0.4",
"vue": "^3.5.32",
"vue-eslint-parser": "^10.4.0"
}
}