forked from sjdonado/idonthavespotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.75 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.75 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
{
"name": "idonthavespotify",
"version": "1.8.1",
"type": "module",
"scripts": {
"dev": "bun run watch:assets & bun run watch:server",
"watch:assets": "bun run build.config.ts --watch",
"watch:server": "bun run --watch src/index.ts",
"build": "bun run build.config.ts --minify",
"build:prod": "bun build src/index.ts --compile --outfile ./dist/idonthavespotify",
"test": "NODE_ENV=test bun test",
"test:mocks:fetch": "bun run scripts/fetch-snapshots.ts",
"test:ci": "bun run test:mocks:fetch && NODE_ENV=test bun test",
"lint": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.ts'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@umami/node": "^0.4.0",
"axios": "^1.13.2",
"axios-retry": "^4.5.0",
"cheerio": "^1.1.2",
"howler": "^2.2.4",
"html-entities": "^2.6.0",
"nano-jsx": "^0.2.1",
"notyf": "^3.10.0",
"pino": "^10.2.0",
"pino-pretty": "^13.1.3",
"string-similarity": "^4.0.4",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/cli": "4.1.18",
"@types/bun": "^1.3.6",
"@types/howler": "^2.2.12",
"@types/string-similarity": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"axios-mock-adapter": "^2.1.0",
"domhandler": "^5.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.0.0",
"postcss": "^8.5.6",
"prettier": "^3.8.0",
"tailwindcss": "4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
}
}