forked from use-ink/contracts-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
92
93
94
95
96
97
98
99
100
{
"name": "contracts-ui",
"version": "2.0.0",
"description": "Substrate Contracts UI",
"private": true,
"type": "module",
"homepage": "https://paritytech.github.io/contracts-ui",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"build-github-pages": "tsc && vite build --config vite.config.ghp.ts",
"lint": "yarn eslint --fix .",
"format": "yarn prettier --write .",
"clean": "rm -rf dist",
"test": "yarn cypress run",
"deep-clean": "yarn clean && rm -rf node_modules",
"regenerate": "yarn deep-clean && yarn && yarn start",
"postinstall": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@headlessui/react": "^1.6.1",
"@heroicons/react": "^1.0.6",
"@polkadot/api": "8.3.2",
"@polkadot/api-contract": "8.3.2",
"@polkadot/extension-dapp": "^0.43.1",
"@polkadot/keyring": "^9.1.1",
"@polkadot/types": "8.3.2",
"@polkadot/ui-keyring": "^2.1.1",
"@polkadot/ui-shared": "^2.1.1",
"@polkadot/util": "^9.1.1",
"@polkadot/util-crypto": "^9.1.1",
"big.js": "^6.1.1",
"buffer": "^6.0.3",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.28.0",
"dexie": "^3.2.2",
"dexie-react-hooks": "1.0.7",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-dropzone": "^14.2.1",
"react-markdown": "^8.0.3",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-select": "^5.3.2",
"react-tooltip": "^4.2.21",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.5",
"tailwind-merge": "^1.2.1"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@nabla/vite-plugin-eslint": "^1.4.0",
"@tailwindcss/forms": "^0.5.1",
"@types/bcryptjs": "^2.4.2",
"@types/big.js": "^6.1.3",
"@types/node": "^17.0.33",
"@types/react-dom": "^18.0.4",
"@types/react-dropzone": "^5.1.0",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"cypress": "^9.6.1",
"cypress-file-upload": "^5.0.8",
"cypress-wait-until": "^1.7.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"lint-staged": ">=12.4.1",
"postcss": "^8.4.13",
"postcss-import": "^14.1.0",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-tsconfig-paths": "^3.4.1"
},
"browserslist": [
"last 2 Chrome versions"
],
"lint-staged": {
"*.{js,cjs,ts,tsx,css,md,json}": "yarn prettier --write"
},
"resolutions": {
"minimist": "npm:minimist@^1.2.6",
"node-forge": "npm:node-forge@^1.3.0"
},
"packageManager": "[email protected]"
}