-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 2.73 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
{
"name": "polkadot-contract-wizard",
"version": "2.2.3-beta",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts:check": "tsc --noEmit",
"test": "jest --watch",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/colors": "^7.0.0",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.13.5",
"@next/third-parties": "^14.1.3",
"@polkadot/api": "^10.4.1",
"@polkadot/api-contract": "^10.11.1",
"@polkadot/extension-dapp": "^0.46.3",
"@polkadot/extension-inject": "^0.46.1",
"@polkadot/react-identicon": "^3.4.1",
"@polkadot/ui-keyring": "^3.6.3",
"@polkadot/ui-settings": "^3.2.1",
"@testing-library/user-event": "^14.4.3",
"@types/react-syntax-highlighter": "^15.5.7",
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"copy-to-clipboard": "^3.3.3",
"dexie": "^3.2.4",
"dotenv": "^16.3.1",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"next": "^14.1.3",
"react": "^18.2.0",
"react-code-blocks": "^0.1.5",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-element-to-jsx-string": "^15.0.0",
"react-syntax-highlighter": "^15.5.0",
"semver": "^7.3.8",
"sharp": "^0.33.2",
"simplebar-react": "^3.2.0",
"useink": "^1.14.1",
"whatwg-url": "^13.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.1.2",
"@types/big.js": "^6.2.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.3",
"@types/react": "18.2.25",
"@types/react-dom": "18.0.11",
"@types/react-toastify": "^4.1.0",
"@types/testing-library__jest-dom": "^5.14.6",
"@types/whatwg-url": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.61.0",
"cypress": "^13.6.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.2",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"stylelint-config-prettier": "^9.0.4",
"stylelint-prettier": "^3.0.0",
"typescript": "5.2.2"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
}
}