-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.44 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
{
"name": "hive-key-master",
"version": "1.0.0",
"description": "Easily add/remove keys on your Hive account",
"main": "src/index.ts",
"scripts": {
"build": "rimraf dist && rimraf tsconfig.tsbuildinfo && tsc",
"build:watch": "tsc -w",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest --passWithNoTests",
"start": "ts-node --transpile-only src/index.ts",
"dev": "NODE_ENV=development ts-node-dev --tree-kill --no-notify --respawn --transpile-only src/index.ts"
},
"author": "reichert-splinterlands",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/steem-monsters/hive-key-master.git"
},
"dependencies": {
"dotenv": "^16.0.1",
"readline-sync": "^1.4.10",
"splinterlands-dhive-sl": "^1.0.14"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"eslintConfig": {}
}