-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
32 lines (32 loc) · 1.01 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
{
"private": true,
"type": "module",
"scripts": {
"fix:eslint": "eslint --ext .js,.vue assets/js/ --fix",
"fix:prettier": "prettier --write --loglevel warn 'assets/js/**/*.vue'",
"fix-code-style": "npm run fix:prettier && npm run fix:eslint",
"heroku-postbuild": "npm run build",
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"@inertiajs/vue3": "^1.0.15",
"@popperjs/core": "^2.11.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/server-renderer": "^3.2.27",
"autoprefixer": "^10.4.19",
"eslint": "^8.4.1",
"eslint-plugin-vue": "^8.2.0",
"lodash": "^4.17.21",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.3",
"url": "^0.11.4",
"uuid": "^8.3.2",
"vite": "^5.4.8",
"vite-plugin-symfony": "^7.0.4",
"vue": "^3.2.27"
}
}