-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.48 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.48 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
67
68
69
70
71
72
73
74
75
76
{
"private": true,
"name": "jimtracker",
"version": "1.0.0",
"description": "Jim Rising LoL Elo Tracker",
"type": "module",
"license": "MIT",
"author": {
"name": "Ahmed Rangel",
"email": "ahmedrangel@outlook.com",
"url": "https://ahmedrangel.com"
},
"contributors": [
"Ahmed Rangel <ahmedrangel@outlook.com>",
"Yizack Rangel <yizackr@gmail.com>"
],
"homepage": "https://github.com/JimRsng/jimtracker",
"repository": {
"type": "git",
"url": "git+https://github.com/JimRsng/jimtracker.git"
},
"bugs": "https://github.com/JimRsng/jimtracker/issues",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --port=5173 --public",
"generate": "nuxt generate",
"preview": "wrangler d1 migrations apply DB --local && wrangler dev",
"postinstall": "nuxt prepare",
"analyze": "nuxt analyze",
"lint": "pnpm lint:eslint && pnpm lint:stylelint",
"lint:fix": "pnpm lint:eslint --fix && pnpm lint:stylelint --fix",
"lint:eslint": "eslint --config .config/eslint.mjs",
"lint:eslint:inspect": "pnpx @eslint/config-inspector --config .config/eslint.mjs",
"lint:stylelint": "stylelint \"**/*.{css,scss}\" --config .config/stylelint.json",
"test:types": "vue-tsc -b --noEmit",
"db:migrate": "drizzle-kit generate --config=.config/drizzle.ts",
"kick:subscribe": "node scripts/subscribe/kick.ts",
"twitch:subscribe": "node scripts/subscribe/twitch.ts"
},
"devDependencies": {
"@iconify-json/eos-icons": "^1.2.4",
"@iconify-json/lucide": "^1.2.98",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/simple-icons": "^1.2.74",
"@iconify-json/tabler": "^1.2.31",
"@libsql/client": "^0.17.0",
"@nuxt/eslint": "^1.15.2",
"@nuxt/ui": "^4.5.1",
"@nuxthub/core": "^0.10.7",
"@nuxtjs/sitemap": "^7.6.0",
"@twurple/api": "^8.0.3",
"@twurple/auth": "^8.0.3",
"@types/node": "^25.5.0",
"chart.js": "^4.5.1",
"cheerio": "^1.2.0",
"date-fns": "^4.1.0",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"eslint": "^10.0.3",
"kient": "^2.3.0",
"nuxt": "^4.4.2",
"nuxt-ui-colors-no-inline": "^0.0.3",
"nuxt-webhook-validators": "^0.2.7",
"sass-embedded": "^1.98.0",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0",
"twisted": "^1.72.2",
"typescript": "^5.9.3",
"ufo": "^1.6.3",
"vue-chartjs": "^5.3.3",
"vue-tsc": "^3.2.5",
"wrangler": "^4.73.0",
"zod": "^4.3.6"
},
"packageManager": "pnpm@10.32.1"
}