-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "freetunes2",
"private": true,
"version": "0.7.0",
"description": "Servicio para escuchar y descargar musica desde yt",
"type": "module",
"scripts": {
"dev": "nodemon api/server.ts",
"dev:docker": "npm rebuild esbuild && npm run dev",
"start": "vite-node --mode production api/server.ts",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint './**/*.{ts,tsx}' --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^18.11.18",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/stoppable": "^1.1.3",
"@types/through2": "^2.0.41",
"axios": "^1.6.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"just-debounce": "^1.1.0",
"phosphor-react": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
"send-seekable": "^1.0.4",
"stoppable": "^1.1.0",
"through2": "^4.0.2",
"typescript": "^4.6.4",
"vite-express": "^0.11.1",
"vite-node": "^0.34.6",
"@vitejs/plugin-react": "^2.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"autoprefixer": "^10.4.13",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-testing-library": "5.0.1",
"nodemon": "^3.0.1",
"postcss": "^8.4.21",
"prettier": "2.5.1",
"tailwindcss": "^3.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not explorer 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"amd": true,
"jest": true,
"node": true
},
"globals": {
"React": true,
"JSX": true
},
"rules": {
"no-console": 0,
"no-debugger": 1,
"prettier/prettier": 1,
"react/react-in-jsx-scope": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"jsx-a11y/media-has-caption": 0
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"@typescript-eslint"
],
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxSingleQuote": true,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
}
}