-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
113 lines (113 loc) · 3.3 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "contracts-ui",
"version": "2.0.0",
"description": "Substrate Contracts UI",
"private": true,
"type": "module",
"homepage": "https://contracts-ui.substrate.io",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "echo 'linting...'; yarn eslint --fix .; echo 'linting complete!'",
"format": "yarn prettier --write .",
"clean": "rm -rf dist",
"test": "yarn cypress run",
"test:cypress": "yarn cypress run",
"test:vitest": "vitest",
"deep-clean": "yarn clean && rm -rf node_modules",
"regenerate": "yarn deep-clean && yarn && yarn start",
"postinstall": "husky install"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": "src",
"reporter": [
"html",
"text"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^1.0.6",
"@polkadot/api": "12.4.2",
"@polkadot/api-contract": "12.4.2",
"@polkadot/extension-dapp": "^0.52.3",
"@polkadot/ui-keyring": "^3.9.1",
"@polkadot/ui-shared": "^3.9.1",
"big.js": "^6.2.1",
"buffer": "^6.0.3",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.30.0",
"dexie": "^3.2.4",
"dexie-react-hooks": "1.1.7",
"json5": "^2.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-markdown": "^9.0.1",
"react-router": "^6.26.1",
"react-router-dom": "^6.26.1",
"react-select": "^5.8.0",
"react-tooltip": "^5.28.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.5.2",
"yup": "^1.4.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.20",
"@cypress/snapshot": "^2.1.7",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@tailwindcss/forms": "^0.5.7",
"@types/bcryptjs": "^2.4.6",
"@types/big.js": "^6.2.2",
"@types/node": "^22.5.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"cypress": "13.13.3",
"cypress-file-upload": "^5.0.8",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.5",
"istanbul-lib-coverage": "^3.2.2",
"lint-staged": "^15.2.9",
"nyc": "^17.0.0",
"postcss": "^8.4.41",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"source-map-support": "^0.5.21",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-istanbul": "^6.0.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"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]"
}