-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "music_quiz_generator",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "npx tsx ./src/server/server.ts",
"watch": "npx tsx watch ./src/server/server.ts",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "npx vitest",
"testcoverage": "vitest run --coverage",
"dotenv-pull": "npx dotenv-vault@latest pull",
"dotenv-push": "npx dotenv-vault@latest push"
},
"engines": {
"npm": ">=9.8.0",
"node": ">=20.15.0"
},
"compilerOptions": {
"esModuleInterop": true
},
"dependencies": {
"@spotify/web-api-ts-sdk": "^1.2.0",
"browser-or-node": "^2.1.1",
"compression": "^1.7.4",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"dotenv-vault": "^1.25.0",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite-plugin-ssr": "^0.4.134"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/compression": "^1.7.2",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.35",
"@types/node": "^20.4.8",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.3.5",
"jsdom": "^22.1.0",
"modern-css-reset": "^1.4.0",
"prettier": "^2.8.8",
"tslib": "^2.6.1",
"tsx": "^3.12.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"vite": "^4.4.8",
"vitest": "^0.34.1"
}
}