-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.47 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
{
"main": "src/index.ts",
"name": "icns-twitter-verifier",
"packageManager": "[email protected]",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/cors": "^2",
"@types/elliptic": "^6",
"@types/eslint": "^8.4.10",
"@types/express": "^4",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/prettier": "^2",
"@types/sha.js": "^2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@cosmjs/amino": "^0.29.3",
"@cosmjs/cosmwasm-stargate": "^0.29.3",
"@cosmjs/encoding": "^0.29.3",
"@cosmjs/math": "^0.29.3",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"commander": "^9.4.1",
"cors": "^2.8.5",
"elliptic": "^6.5.4",
"express": "^4.18.2",
"jest": "^29.3.1",
"level": "^8.0.0",
"sha.js": "2.4.9",
"twitter-api-sdk": "^1.2.1"
},
"bin": {
"icns-verifier": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node ./build/index.js",
"dev": "nodemon",
"test": "jest",
"lint": "yarn eslint . --fix --ext .ts,.tsx,.js,.jsx && prettier --write ."
}
}