-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.65 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "bridge-web",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode dev --port 8080",
"build": "tsc && vite build --mode prod",
"build-dev": "npm run build && npm run dev",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"fmt": "npm run prettier:fix && npm run lint:fix",
"fmt:check": "npm run prettier && npm run lint",
"prepare": "husky install",
"test": "npm run unit && npm run cy:e2e && npm run cy:component",
"test-ci": "npm run unit && npm run cy:e2e-ci && npm run cy:component-ci",
"unit": "node node_modules/jest/bin/jest.js --maxWorkers=1",
"cy:open": "cypress open",
"cy:e2e": "start-server-and-test dev http://localhost:8080 'cypress run --browser chrome'",
"cy:e2e-ci": "start-server-and-test dev http://localhost:8080 'cypress run --browser chrome --env VITE_CI_TEST=true'",
"postcy:e2e-ci": "mv -n cypress-visual-report/cypress-visual-report.html cypress-visual-report/cypress-visual-report-e2e.html",
"cy:component": "cypress run --component --browser chrome",
"cy:component-ci": "export VITE_CI_TEST=true && cypress run --component --browser chrome",
"postcy:component-ci": "mv -n cypress-visual-report/cypress-visual-report.html cypress-visual-report/cypress-visual-report-component.html"
},
"dependencies": {
"@dusalabs/sdk": "^0.5.28",
"@massalabs/massa-web3": "^4.0.2-dev",
"@massalabs/react-ui-kit": "^0.0.6-dev",
"@massalabs/wallet-provider": "^2.0.1-dev",
"@rainbow-me/rainbowkit": "^2.0.0-beta.4",
"@tanstack/query-core": "^5.18.1",
"@tanstack/react-query": "^5.18.1",
"axios": "^1.4.0",
"big.js": "^6.2.1",
"currency.js": "^2.0.4",
"delay": "^6.0.0",
"dot-object": "^2.1.5",
"esbuild": "0.17.19",
"localforage": "^1.10.0",
"lottie-react": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"semver": "^7.6.0",
"tw-colors": "^3.3.1",
"usehooks-ts": "^2.13.0",
"viem": "^2.7.6",
"wagmi": "^2.5.6",
"zustand": "^4.3.8"
},
"devDependencies": {
"@faker-js/faker": "^8.0.0",
"@massalabs/eslint-config": "^0.0.9",
"@massalabs/prettier-config-as": "^0.0.2",
"@tanstack/eslint-plugin-query": "^4.29.4",
"@testing-library/react": "^14.0.0",
"@types/big.js": "^6.2.0",
"@types/dot-object": "^2.1.6",
"@types/jest": "^29.5.8",
"@types/jsdom": "^21.1.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"autoprefixer": "^10.4.14",
"cypress": "^13.3.3",
"cypress-browser-permissions": "^1.1.0",
"cypress-image-diff-js": "^1.31.0",
"eslint": "^8.56.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.1",
"miragejs": "^0.1.47",
"postcss": "^8.4.23",
"postcss-loader": "^7.2.4",
"prop-types": "^15.8.1",
"react-icons": "^4.8.0",
"react-test-renderer": "^18.2.0",
"rollup-plugin-visualizer": "^5.9.2",
"start-server-and-test": "^2.0.2",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.3.9",
"vite-plugin-svgr": "^3.2.0"
}
}