-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.4 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": "@windingtree/wtmp-tokenomics",
"version": "1.0.0",
"description": "LIF tokenomics of the WindingTree market protocol",
"type": "module",
"main": "dist/index.js",
"repository": "[email protected]:windingtree/protocol-tokenomics.git",
"author": "Kostiantyn Smyrnov <[email protected]>",
"contributors": [
"Kostiantyn Smyrnov <[email protected]>"
],
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc -p tsconfig.build.json",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix && npx prettier --write .",
"prepare": "husky install",
"commit": "git-cz -S",
"start": "node --experimental-specifier-resolution=node dist/src/index.js",
"start:dev": "node --trace-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/index.ts"
},
"devDependencies": {
"@types/node": "^18.11.18",
"eslint": "^8.33.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"prettier": "^2.8.3",
"husky": "^8.0.3",
"git-cz": "^4.9.0",
"lint-staged": "^13.1.0",
"typescript": "^4.9.5",
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/cli": "^17.4.2"
},
"dependencies": {
"ethers": "^5.7.2",
"kleur": "^4.1.5",
"dotenv": "^16.0.3"
}
}