-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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": "spotify-true-random",
"private": true,
"author": {
"name": "Tomer Aberbach",
"email": "tomer@aberba.ch",
"url": "https://tomeraberba.ch"
},
"type": "module",
"engines": {
"node": ">= 22"
},
"scripts": {
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint/ --fix .",
"typecheck": "react-router typegen && tsc --noEmit",
"test": "vitest",
"dev": "react-router dev",
"build": "react-router build",
"start": "react-router-serve ./build/server/index.js"
},
"prettier": "@tomer/prettier-config",
"dependencies": {
"@react-router/fs-routes": "^7.8.2",
"@react-router/node": "^7.8.2",
"@react-router/serve": "^7.8.2",
"@spotify/web-api-ts-sdk": "^1.2.0",
"isbot": "^5.1.30",
"lfi": "^4.0.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router": "^7.8.2"
},
"devDependencies": {
"@fast-check/vitest": "^0.1.2",
"@react-router/dev": "^7.8.2",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/vite": "^4.1.12",
"@tomer/eslint-config": "^4.1.1",
"@tomer/prettier-config": "^4.0.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"eslint": "^9.34.0",
"jest-extended": "^6.0.0",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^6.0.3",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}