-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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": "spread-the-song",
"description": "Get a song URL from any music cloud service ready to be shared everywhere.",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev --turbopack",
"lint": "next lint",
"test": "vitest",
"start": "next start",
"type-check": "tsc --noEmit"
},
"workspaces": [
"domain"
],
"dependencies": {
"@cacheable/node-cache": "1",
"@radix-ui/react-form": "0",
"@radix-ui/react-icons": "1",
"class-variance-authority": "0",
"next": "15",
"next-intl": "3",
"react": "19.0.0-rc.1",
"react-dom": "19.0.0-rc.1",
"zod": "3"
},
"devDependencies": {
"@svgr/webpack": "8",
"@testing-library/dom": "10",
"@testing-library/react": "16",
"@types/node": "22",
"@types/react": "18",
"@types/react-dom": "18",
"@vitejs/plugin-react": "4",
"autoprefixer": "10",
"eslint": "8",
"eslint-config-next": "15",
"eslint-config-prettier": "9",
"eslint-plugin-prettier": "5",
"jsdom": "25",
"postcss": "8",
"prettier": "3",
"tailwindcss": "3",
"typescript": "5",
"vitest": "2"
}
}