-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.22 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.22 KB
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
{
"name": "document-analysis-platform",
"version": "0.1.0",
"private": true,
"dependencies": {
"@tanstack/react-query": "^4.29.5",
"@testing-library/jest-dom": "^5.16.5",
"@types/lodash": "^4.14.191",
"@types/node": "^16.18.11",
"@types/styled-components": "^5.1.34",
"axios": "^1.3.3",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-pdf": "^6.2.2",
"react-router-dom": "^6.8.1",
"react-scripts": "5.0.1",
"react-swipeable": "^7.0.0",
"socket.io-client": "^4.6.1",
"styled-components": "^6.1.18",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5",
"web-vitals": "^3.3.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "vitest run",
"test:watch": "vitest watch",
"test:file": "vitest --run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:visual": "playwright test --project=chromium visualRegression.test.ts",
"test:visual:update": "playwright test --project=chromium visualRegression.test.ts --update-snapshots",
"test:all": "npm run test && npm run test:e2e",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^16.18.11",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@types/react-pdf": "^6.2.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.32.0",
"@vitest/ui": "^0.32.0",
"autoprefixer": "^10.4.13",
"c8": "^7.13.0",
"jsdom": "^22.1.0",
"msw": "^1.2.2",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.2",
"vitest": "^0.32.4"
},
"proxy": "http://localhost:8000"
}