-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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": "sequence-wallet-scripts",
"version": "1.0.0",
"main": "./scripts/main.ts",
"repository": "https://github.com/ScreamingHawk/sequence-wallet-scripts.git",
"author": "Michael Standen",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"0xsequence": "^1.2.2",
"@commander-js/extra-typings": "^11.0.0",
"@inquirer/prompts": "^3.1.1",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"ora": "5.4.1",
"ts-node": "^10.9.1",
"vite": "^4.4.9"
},
"scripts": {
"sequence-multisig": "yarn ts-node scripts/main.ts",
"frontend": "cd frontend && yarn && yarn dev",
"lint:init": "husky install",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.7",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*.ts": "eslint --fix",
"**/*.{js,ts,md,yaml,json}": "prettier --write"
}
}