-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
49 lines (49 loc) · 1.75 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
{
"name": "namada",
"version": "0.2.4",
"private": true,
"workspaces": [
"apps/namadillo",
"apps/extension",
"apps/faucet",
"packages/*",
"e2e"
],
"scripts": {
"bump": "node ./scripts/bump.js",
"release": "yarn workspaces foreach -Avt --exclude namada run release && release-it --ci",
"release:no-npm": "yarn workspaces foreach -Avt --exclude namada run release:no-npm && release-it",
"release:dry-run": "yarn workspaces foreach -Avt --exclude namada run release:dry-run && release-it --dry-run --ci",
"wasm:build-test": "./scripts/build-test.sh",
"test": "wsrun --serial --exclude-missing -c test",
"test:ci": "wsrun --serial --exclude-missing -c test:ci",
"test-wasm:ci": "wsrun --serial --exclude-missing -c test-wasm:ci",
"lint": "wsrun -l --exclude-missing -c lint",
"lint:fix": "wsrun -l --exclude-missing -c lint:fix",
"lint:ci": "wsrun -l --exclude-missing -c lint:ci",
"prepare": "husky install",
"docker-build-faucet": "docker build -f docker/faucet/Dockerfile .",
"docker-build-namadillo": "docker build -f docker/namadillo/Dockerfile ."
},
"devDependencies": {
"@chain-registry/types": "^0.45.80",
"@release-it/conventional-changelog": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^8.57.0",
"git-commit-msg-linter": "^5.0.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"release-it": "^17.0.1",
"stream-browserify": "^3.0.0",
"typescript": "^5.5.4",
"vite-plugin-checker": "^0.6.4",
"wsrun": "^5.2.4"
},
"packageManager": "[email protected]",
"dependencies": {
"chain-registry": "^1.63.100"
}
}