-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.32 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
{
"name": "xsafe-ui",
"version": "0.1.0",
"description": "Redefining multi-chain deployment: same address, no nonces, no salts.",
"author": "Chain Rule, LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chainrule-labs/xsafe-ui.git"
},
"scripts": {
"build": "next build",
"commit": "git-cz",
"dev": "next dev",
"format": "prettier --write .",
"format:check": "prettier --plugin=prettier-plugin-tailwindcss --check .",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"start": "next start",
"test": "jest --coverage",
"test:match": "jest --verbose"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@reduxjs/toolkit": "^1.9.7",
"@wagmi/core": "^1.4.7",
"encoding": "^0.1.13",
"lokijs": "^1.5.12",
"next": "^14.0.2",
"next-pwa": "^5.6.0",
"pino-pretty": "^10.2.3",
"react": "^18",
"react-blockies": "^1.4.1",
"react-dom": "^18",
"react-icons": "^4.11.0",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"uuid": "^9.0.1",
"viem": "^1.16.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@next/eslint-plugin-next": "^14.0.2",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-blockies": "^1.4.2",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"autoprefixer": "^10",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5"
}
}