-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "pixelflix",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@fontsource-variable/onest": "5.2.7",
"@fontsource-variable/playfair-display": "5.2.5",
"@midudev/tailwind-animations": "0.2.0",
"@tailwindcss/vite": "4.0.17",
"@tanstack/react-query": "5.71.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet-async": "2.0.5",
"react-router-dom": "^7.5.2",
"swiper": "11.2.6",
"tailwindcss": "4.0.17",
"zustand": "5.0.3"
},
"devDependencies": {
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"ts-standard": "12.0.2",
"typescript": "~5.7.2",
"vite": "^6.2.0"
},
"eslintConfig": {
"extends": [
"./node_modules/ts-standard/eslintrc.json"
],
"parserOptions": {
"project": "./tsconfig.app.json"
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/strict-boolean-expressions": "off"
}
}
}