-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) 路 2.28 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) 路 2.28 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
{
"name": "tezos-evm-bridge",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "start-storybook -p 7001",
"storybook:build": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"@airgap/beacon-types": "^4.0.10",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@mantine/core": "6.0.2",
"@mantine/form": "^6.0.19",
"@mantine/hooks": "6.0.2",
"@mantine/next": "6.0.2",
"@mantine/notifications": "6.0.2",
"@next/bundle-analyzer": "^13.4.19",
"@tabler/icons": "^2.34.0",
"@tabler/icons-react": "^2.34.0",
"@taquito/beacon-wallet": "^17.3.1",
"@taquito/rpc": "^17.3.1",
"@taquito/taquito": "^17.3.1",
"axios": "^1.5.0",
"cookies-next": "^4.0.0",
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"viem": "^1.12.1",
"wagmi": "^1.4.2",
"web3-validator": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@next/eslint-plugin-next": "^13.4.19",
"@storybook/react": "^7.4.3",
"@testing-library/jest-dom": "^6.1.3",
"@types/react": "18.2.22",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "2.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.14",
"eslint-plugin-testing-library": "^6.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "5.2.2"
}
}