-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 3.14 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
{
"name": "@massalabs/react-ui-kit",
"version": "1.0.0",
"type": "module",
"files": ["src", "presets"],
"main": "src/index.ts",
"style": "src/global.css",
"scripts": {
"build": "tsc",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"cy:open": "cypress open",
"cy:e2e": "cypress run",
"cy:e2e-ci": "export VITE_CI_TEST=true && cypress run",
"cy:component": "cypress run --component --browser chrome",
"cy:component-ci": "export VITE_CI_TEST=true && cypress run --component --browser chrome",
"fmt": "npm run prettier:fix && npm run lint:fix",
"fmt:check": "npm run prettier && npm run lint",
"test": "jest && npm run cy:component",
"test:unit": "jest",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@massalabs/massa-web3": "^5.0.1-dev",
"@massalabs/wallet-provider": "^3.0.1-dev",
"copy-to-clipboard": "^3.3.3",
"currency.js": "^2.0.4",
"dot-object": "^2.1.5",
"minidenticons": "^4.2.1",
"react": "^18.2.0",
"react-currency-input-field": "^3.6.11",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-number-format": "^5.2.2",
"tw-colors": "^1.2.5",
"viem": "^2.19.4",
"vite-plugin-svgr": "^3.2.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-flow": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@inrupt/jest-jsdom-polyfills": "^2.4.1",
"@massalabs/eslint-config": "^0.0.9",
"@massalabs/prettier-config-as": "^0.0.2",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.4.5",
"@storybook/react": "^7.4.5",
"@storybook/react-vite": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/dot-object": "^2.1.6",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"cypress": "^13.3.0",
"cypress-image-diff-js": "^1.30.1",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.6.14",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"postcss": "^8.4.31",
"postcss-loader": "^7.2.4",
"prop-types": "^15.8.1",
"react-test-renderer": "^18.2.0",
"storybook": "^7.4.5",
"tailwindcss": "^3.3.1",
"typescript": "^5.2.2",
"vite": "^4.5.3"
}
}