-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.16 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
{
"name": "blockchain",
"version": "0.1.0",
"private": true,
"dependencies": {
"@celo-tools/use-contractkit": "3.0.0-beta2",
"@celo/contractkit": "^1.5.2",
"@headlessui/react": "^1.6.1",
"@hookform/resolvers": "^2.8.8",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"axios": "^0.26.0",
"clsx": "1.1.1",
"crypto-js": "^4.1.1",
"fs-extra": "^10.0.0",
"lint-staged": "^12.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.27.0",
"react-icons": "^4.3.1",
"react-query": "^3.34.15",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"react-share": "^4.4.0",
"react-slick": "^0.29.0",
"react-toastify": "^9.0.1",
"slick-carousel": "^1.8.1",
"typescript": "^4.5.5",
"web-vitals": "^1.0.1",
"web3": "^1.3.5",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"isready": "npm run format && npm run lint && npm run build",
"build:css": "npx tailwindcss -i ./src/styles/tailwind.css -c ./tailwind.config.js -o ./src/styles/index.css --minify",
"watch:css": "npx tailwindcss -i ./src/styles/tailwind.css -c ./tailwind.config.js -o ./src/styles/index.css --minify -w"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-router-dom": "^5.3.3",
"@types/react-slick": "^0.23.8",
"autoprefixer": "^9.8.8",
"husky": "^7.0.0",
"postcss": "^7.0.39",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn prettier --write src",
"yarn test --watchAll=false --findRelatedTests --bail"
]
}
}