-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.23 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "stunes-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "npx vite-node ./src/server/server.ts",
"lint": "eslint ./src --ext .jsx,.js,.ts,.tsx --ignore-path ./.gitignore",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"test": "cross-env NODE_ENV=test vitest run",
"test-watch": "cross-env NODE_ENV=test vitest watch",
"test-ui": "cross-env NODE_ENV=test vitest --ui --api 9527"
},
"dependencies": {
"@tanstack/react-query": "5.51.15",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-fetch": "^3.3.2",
"querystring": "^0.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-select": "5.8.0",
"react-split": "^2.0.14",
"spotify-web-api-js": "^1.5.2",
"ts-results": "^3.3.0",
"typestyle": "^2.4.0",
"vite-express": "0.17.0",
"vite-node": "2.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
"@types/cookie": "^0.6.0",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node-fetch": "^2.6.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/ui": "^2.0.4",
"cookie": "^0.6.0",
"cross-env": "^7.0.3",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"typescript": "5.5.4",
"vite": "5.3.5",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.4",
"vitest-fetch-mock": "0.3.0"
}
}