-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage copy.json
51 lines (51 loc) · 1.43 KB
/
package copy.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
{
"name": "obs-chat",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"prepare": "husky install",
"preview": "vite preview"
},
"lint-staged": {
"./**/*.{js,mjs,cjs}": [
"eslint --cache --fix --ext .js,.mjs,.cjs ./",
"prettier --cache --write \"./**/*.{js,mjs,cjs}\""
],
"./src/**/*.jsx": [
"eslint --cache --ext .jsx ./src/ --fix",
"prettier --cache --write \"./src/**/*.jsx\""
],
"./src/**/*.css": "prettier --cache --write \"./src/styles/*.css\"",
"./**/*.json": "prettier --cache --write \"./**/*.json\"",
"./**/*.md": "prettier --cache --write \"./**/*.md\""
},
"dependencies": {
"axios": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use-websocket": "^4.3.1",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.21",
"prettier": "^3.0.2",
"tailwindcss": "^3.2.7",
"vite": "^4.2.0"
}
}