-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.93 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
{
"name": "casimir",
"version": "1.0.0-beta.4",
"description": "Decentralized staking and asset management",
"workspaces": [
"apps/*",
"common/*",
"contracts/*",
"infrastructure/*",
"services/*"
],
"scripts": {
"clean": "npx esno scripts/root/clean.ts",
"debug:ethereum": "npx esno -r dotenv/config scripts/ethereum/debug.ts",
"deploy:cdk": "npx esno -r dotenv/config scripts/cdk/deploy.ts",
"deploy:ethereum": "npx esno -r dotenv/config scripts/ethereum/deploy.ts",
"dev": "npx esno -r dotenv/config scripts/root/dev.ts",
"dev:www": "APP=www npm run dev",
"docgen": "npm run docgen --workspace @casimir/ethereum",
"lint": "eslint --ext .vue,.ts ./ --fix",
"migrations:users": "npx esno -r dotenv/config scripts/migrations/users.ts",
"postinstall": "npx esno scripts/root/check.ts && npm run build --workspace @casimir/ethereum",
"preinstall": "git submodule sync && git submodule update --init --recursive",
"prepare": "husky install",
"release": "release-it",
"report:ethereum": "npx esno -r dotenv/config scripts/ethereum/report.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"test:actions": "npx esno -r dotenv/config scripts/actions/test.ts",
"test:cdk": "npx esno -r dotenv/config scripts/cdk/test.ts",
"upgrade:ethereum": "npx esno -r dotenv/config scripts/ethereum/upgrade.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consensusnetworks/casimir.git"
},
"keywords": [
"self-custody",
"staking"
],
"author": "Consensus Networks",
"license": "Apache",
"bugs": {
"url": "https://github.com/consensusnetworks/casimir/issues"
},
"homepage": "https://github.com/consensusnetworks/casimir#readme",
"devDependencies": {
"@aws-sdk/client-secrets-manager": "^3.204.0",
"@aws-sdk/credential-providers": "^3.204.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vue/eslint-config-typescript": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint": "^8.19.0",
"eslint-plugin-vue": "^8.7.1",
"esno": "^0.17.0",
"ethers": "^5.7.2",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"release-it": "^15.6.0",
"vite-plugin-md": "^0.22.5",
"vite-plugin-vue-markdown": "^0.23.8",
"zx": "^7.1.1"
},
"lint-staged": {
"*.{ts,vue}": "npm run lint"
},
"release-it": {
"npm": {
"publish": false
},
"github": {
"tagName": "v${version}",
"releaseName": "v${version}",
"release": true
},
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
"commitMessage": "Release v${version}"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
},
"dependencies": {}
}