-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.76 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
{
"name": "abc-virtual-background-maker",
"private": true,
"version": "3.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"stylelint": "stylelint \"src/**/*.scss\"",
"typecheck": "tsc --noEmit",
"configcheck": "test -f output.config.json || cp app.config.json output.config.json",
"format": "prettier --check \"./src/**/*.{js,cjs,mjs,ts,tsx,md,json}\"",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.6.5",
"html2canvas": "^1.4.1",
"quantize": "^1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-markdown": "^9.0.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.11.30",
"@types/quantize": "^1.0.2",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"rollup-plugin-copy": "^3.5.0",
"sass": "^1.72.0",
"stylelint": "^16.0.2",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard-scss": "^12.0.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.2.2",
"vite": "^5.1.7",
"vite-plugin-stylelint": "^5.3.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.1"
}
}