-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.03 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.03 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "animed",
"version": "1.0.0",
"description": "Anime client built with Nuxt 3 using data provided from Anilist API",
"author": "Ahmed Rangel",
"type": "module",
"homepage": "https://github.com/ahmedrangel/animed",
"repository": {
"type": "git",
"url": "https://github.com/ahmedrangel/animed"
},
"bugs": {
"url": "https://github.com/ahmedrangel/animed/issues"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --port=5173 --public",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "pnpm run lint:eslint && pnpm run lint:stylelint",
"lint:eslint": "eslint --fix --config .config/eslint.mjs",
"lint:stylelint": "stylelint \"**/*.css\" --fix --config .config/stylelint.json",
"db:migrate": "drizzle-kit generate --config=.config/drizzle.ts"
},
"devDependencies": {
"@iconify-json/ci": "^1.2.2",
"@iconify-json/line-md": "^1.2.16",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/simple-icons": "^1.2.72",
"@libsql/client": "^0.17.0",
"@nuxt/eslint": "^1.15.2",
"@nuxt/fonts": "^0.14.0",
"@nuxt/icon": "^2.2.1",
"@nuxt/scripts": "^0.13.2",
"@nuxthub/core": "^0.10.7",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/sitemap": "^7.6.0",
"@types/bootstrap": "^5.2.10",
"@types/node": "^25.3.5",
"@vue/compiler-sfc": "^3.5.29",
"@vuepic/vue-datepicker": "^12.1.0",
"@vueuse/nuxt": "^14.2.1",
"@yeger/vue-masonry-wall": "^6.1.0",
"cheerio": "^1.2.0",
"date-fns": "^4.1.0",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"eslint": "10.0.3",
"gql-payload": "^2.1.0",
"nuxt": "4.3.1",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^5.9.3",
"wrangler": "^4.71.0"
},
"dependencies": {
"bootstrap": "^5.3.8",
"idb-keyval": "^6.2.2",
"nuxt-aos": "^1.2.6",
"nuxt-auth-utils": "0.5.29",
"nuxt-ripple": "^0.0.8"
},
"packageManager": "pnpm@10.30.3"
}