-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.11 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.11 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "alberto",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "NODE_OPTIONS=--max-old-space-size=4096 vite build",
"build:prod": "NODE_OPTIONS=--max-old-space-size=4096 vite build --mode production",
"build:staging": "NODE_OPTIONS=--max-old-space-size=4096 vite build --mode staging",
"preview": "vite preview",
"test": "vitest --ui",
"test:run": "vitest run",
"test:e2e": "npx playwright test --config=./e2e/playwright.config.ts",
"version": "git add -A",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"dependencies": {
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fontsource/roboto": "4.5.8",
"@liftedinit/many-js": "0.3.0",
"@liftedinit/ui": "github:liftedinit/lifted-ui",
"@tanstack/react-query": "4.41.0",
"@web3auth/modal": "10.13.0",
"big.js": "6.2.2",
"buffer": "6.0.3",
"chakra-ui-markdown-renderer": "4.1.0",
"core-js": "3.47.0",
"crypto-browserify": "3.12.1",
"formik": "2.4.9",
"framer-motion": "6.5.1",
"localforage": "1.10.0",
"process": "0.11.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.71.1",
"react-icons": "4.12.0",
"react-markdown": "8.0.7",
"react-router": "6.30.3",
"react-router-dom": "6.30.3",
"readable-stream": "4.7.0",
"stream-browserify": "3.0.0",
"typescript": "5.9.3",
"validator": "13.15.26",
"web-vitals": "1.1.2",
"yup": "1.7.1",
"zustand": "3.7.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@playwright/test": "1.57.0",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "13.5.0",
"@types/big.js": "6.2.2",
"@types/node": "20.19.20",
"@types/react": "18.3.26",
"@types/react-dom": "18.3.7",
"@types/validator": "13.15.10",
"@vitejs/plugin-react-swc": "4.2.2",
"@vitest/coverage-v8": "4.0.17",
"@vitest/ui": "4.0.17",
"browserstack-local": "1.5.8",
"dotenv": "16.6.1",
"happy-dom": "20.3.0",
"husky": "8.0.3",
"prettier": "2.8.8",
"vite": "7.3.1",
"vite-plugin-node-polyfills": "0.25.0",
"vitest": "4.0.17"
},
"resolutions": {
"//": "See https://github.com/facebook/create-react-app/issues/11773",
"react-error-overlay": "6.0.9"
},
"overrides": {
"diff": "8.0.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"testing-library/no-debugging-utils": [
"error",
{
"utilsToCheckFor": {
"debug": false,
"logRoles": true,
"logDOM": true
}
}
]
}
},
"jest": {
"testEnvironment": "jest-environment-jsdom"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "https://qa.liftedinit.tech/api"
}