-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "wannadbfrontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"serve": "vite",
"start": "npm run backend:check && npm run backend:create && vite --open",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier --write ./src",
"format:check": "prettier ./src --check",
"test": "vitest run --coverage --mode development",
"test:watch": "vitest",
"prepare": "husky install",
"setup": "npm install && npm run prepare",
"generate": "python scripts/generate.py",
"g": "python scripts/generate.py",
"comment:check": "python scripts/check_comment.py",
"backend:check": "python scripts/check_backend.py",
"backend:create": "npm run backend:create:tables",
"backend:create:tables": "python scripts/create_table.py",
"txt:create": "python scripts/create_txt.py",
"server:update": "git pull && ./scripts/create_table.sh && npm run build"
},
"dependencies": {
"axios": "^1.6.2",
"bootstrap-icons": "^1.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^8.0.0",
"jsdom": "^23.0.0",
"mock-local-storage": "^1.1.24",
"prettier": "3.1.0",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"vite": "^5.0.12",
"vitest": "^0.34.6"
}
}