-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.53 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
{
"name": "coong-wallet",
"private": true,
"description": "A website-based multi-chain wallet for Polkadot & Kusama ecosystem",
"author": "Thang X. Vu <[email protected]>",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn workspace @coong/ui start",
"build": "yarn clean && npx lerna run build",
"clean": "npx lerna run clean",
"test": "npx lerna run --no-bail --verbose test",
"prettify": "npx prettier --write \"{packages,scripts}/{**/*,*}.{js,ts,jsx,tsx,json}\"",
"check-format": "npx prettier --check \"{packages,scripts}/{**/*,*}.{js,ts,jsx,tsx,json}\"",
"version": "yarn generate-package-info-file",
"prepublishOnly": "yarn copy-files-to-dist",
"postinstall": "husky install",
"generate-package-info-file": "lerna exec -- node \\$LERNA_ROOT_PATH/scripts/generate-package-info-file.js",
"copy-files-to-dist": "lerna exec -- node \\$LERNA_ROOT_PATH/scripts/copy-files-to-dist.js"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lerna": "^6.5.1",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.29.2"
},
"resolutions": {
"@polkadot/types": "^12.1.1",
"@polkadot/util": "^12.6.2",
"@polkadot/keyring": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@polkadot/ui-keyring": "^3.6.6"
},
"license": "Apache-2.0"
}