-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.77 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "blend_safe_frontend",
"version": "1.0.0",
"description": "Blend Safe Frontend",
"keywords": [
"Rust",
"Internet Computer",
"JavaScript",
"Canister"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"prebuild": "dfx generate",
"start": "webpack serve --mode development --env development",
"deploy:local": "dfx deploy --network=local",
"deploy:ic": "dfx deploy --network=ic",
"generate": "dfx generate blend_safe_backend"
},
"dependencies": {
"@connect2ic/core": "^0.1.1",
"@connect2ic/react": "^0.1.0",
"@dfinity/agent": "^0.20.0",
"@dfinity/candid": "^0.20.0",
"@dfinity/principal": "^0.20.0",
"@hookform/error-message": "^2.0.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"bignumber.js": "^9.1.1",
"classnames": "^2.3.2",
"daisyui": "2.46.1",
"dayjs": "^1.11.9",
"ethereumjs-tx": "^2.1.2",
"immer": "^10.0.2",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"react-icons": "^4.11.0",
"react-number-format": "^5.3.3",
"react-quill": "^2.0.0",
"react-router-dom": "^6.18.0",
"react-select": "^5.8.0",
"react-toastify": "^10.0.4",
"sort-by": "^1.2.0",
"uuid": "^9.0.0",
"vite": "^5.0.11",
"web3": "^4.3.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/cz-commitlint": "^17.3.0",
"@percy/cli": "^1.16.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.5",
"@types/node": "^17.0.36",
"@types/react": "^18.1.0",
"@types/react-dom": "^18.1.0",
"@types/retry": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@typescript-eslint/typescript-estree": "^6.7.2",
"@vitejs/plugin-react-refresh": "^1.3.6",
"assert": "2.0.0",
"autoprefixer": "^10.4.13",
"buffer": "6.0.3",
"bun-types": "^1.0.2",
"commitizen": "^4.2.6",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unused-imports": "^2.0.0",
"events": "3.3.0",
"html-webpack-plugin": "5.5.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.7",
"process": "0.11.10",
"rimraf": "^3.0.2",
"stream-browserify": "3.0.0",
"tailwindcss": "^3.2.4",
"terser-webpack-plugin": "^5.3.3",
"typescript": "^4.4.3",
"util": "0.12.4",
"vite": "^2.9.9",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.8.1"
},
"engines": {
"node": "^12 || ^14 || ^16 || >=17",
"npm": "^7.17 || >=8"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
]
}