-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
49 lines (49 loc) · 1.45 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
49
{
"name": "laranuxt",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"lint": "yarn lint:js",
"lint:js": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:action": "yarn lint:js -f @jamesacarr/github-actions",
"style": "composer cs; yarn lint",
"test": "vitest",
"t": "yarn test",
"test:coverage": "vitest run --coverage",
"tc": "yarn test:coverage",
"api": "./artisan serve",
"seed": "./artisan migrate:fresh --seed",
"caches": "./artisan config:cache; ./artisan route:cache; ./artisan cache:clear; ./artisan event:clear;",
"stan": "composer stan"
},
"dependencies": {
"@nuxt/ui": "^2.9.0"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.21",
"@iconify-json/mdi": "^1.1.54",
"@iconify/vue": "^4.1.1",
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@vitest/coverage-v8": "^0.34.6",
"@vueuse/nuxt": "^10.5.0",
"dayjs": "^1.11.10",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"laravel-echo": "^1.15.3",
"lottie-web": "^5.12.2",
"nuxt": "^3.7.4",
"ofetch": "^1.3.3",
"pusher-js": "^8.3.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
}
}