-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "react-typescript",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:mock": "vite --mode mock",
"dev:test": "vite --mode test",
"dev:staging": "vite --mode staging",
"dev:production": "vite --mode production",
"build": "tsc && vite build --mode production",
"build:staging": "tsc && vite build --mode production",
"build:dev": "tsc && vite build --mode development",
"build:mock": "tsc && vite build --mode mock",
"build:test": "tsc && vite build --mode test",
"build:e2e": "tsc && vite build --mode e2e",
"lint": "eslint --ext .js,.jsx,.ts,.tsx",
"prepare": "npx playwright install",
"preview": "vite preview",
"coverage": "vitest --coverage",
"clear": "rimraf ./dist && rimraf ./coverage",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "yarn build:mock && vitest --config vite.e2e.config.ts"
},
"dependencies": {
"@raulpesilva/re-state": "^1.2.32",
"axios": "^1.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"styled-components": "^6.1.11",
"use-debounce": "^10.0.1"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^1.6.0",
"eslint": "^9.5.0",
"jsdom": "^24.1.0",
"msw": "^2.3.1",
"playwright": "^1.44.1",
"rimraf": "^5.0.7",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-inspect": "^0.8.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"msw": {
"workerDirectory": "public"
}
}