-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.46 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.46 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
{
"name": "blockroll",
"version": "0.1.1",
"private": true,
"scripts": {
"gen-types": "npx typechain --target ethers-v5 --out-dir src/lib/types/contracts/ src/lib/contracts/*.json",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"commit": "cz",
"release": "commit-and-tag-version",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"postinstall": "yarn gen-types",
"e2e:open": "start-server-and-test dev http://localhost:3000 cypress:open",
"e2e:run": "start-server-and-test dev http://localhost:3000 cypress:run"
},
"browserslist": [
">1%",
"not ie 11",
"not dead",
"not op_mini all"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"autoprefixer": "^10.4.14",
"formik": "^2.2.9",
"next": "12.2.5",
"pdf-lib": "^1.17.1",
"pm2": "^5.3.0",
"postcss": "^8.4.23",
"react": "18.2.0",
"react-data-table-component": "^7.5.3",
"react-dom": "18.2.0",
"react-phone-number-input": "^3.2.23",
"react-redux": "^8.0.5",
"react-responsive-carousel": "^3.2.23",
"react-select-country-list": "^2.2.3",
"react-toastify": "^9.1.3",
"redux": "^4.2.1",
"styled-components": "^6.0.0-rc.3",
"swiper": "^9.4.1",
"tailwindcss": "^3.3.2",
"yup": "^1.1.1",
"ethers": "^5.1.3",
"@ethersproject/providers": "^5.1.3",
"@ethersproject/abi": "^5.1.3"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-viewport": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.1",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-select-country-list": "^2.2.1",
"babel-loader": "^8.2.5",
"commit-and-tag-version": "^10.1.0",
"cypress": "^10.7.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.23.0",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.6.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.2",
"lint-staged": "^13.0.3",
"node-mocks-http": "^1.11.0",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"storybook-addon-swc": "^1.1.8",
"typescript": "4.8.2",
"typechain": "^8.2.0",
"@typechain/ethers-v5": "^11.0.0"
}
}