-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
59
60
61
62
63
64
{
"name": "qa-challenge-legacy-dapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.11.4",
"@craco/craco": "^7.1.0",
"@popperjs/core": "^2.11.8",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"crypto-browserify": "^3.12.0",
"formik": "^2.4.6",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-popper": "^2.3.0",
"react-popper-tooltip": "^4.4.2",
"react-scripts": "5.0.1",
"sql.js": "^1.11.0",
"stream-browserify": "^3.0.0",
"utility-types": "^3.11.0",
"vm-browserify": "^1.1.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"eject": "react-scripts eject",
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:report": "npx playwright show-report",
"postinstall": "npx playwright install --with-deps"
},
"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.46.0",
"@types/lodash": "^4.17.7",
"@types/react-helmet": "^6.1.11",
"binary-loader": "^0.0.1",
"postcss-preset-env": "^10.0.0",
"typescript": "^4.9.5",
"url-loader": "^4.1.1"
}
}