generated from valora-inc/typescript-app-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "@revo-market/farm-bot-apy",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:revo-market/farm-bot-apy.git",
"author": "Revo Inc",
"license": "Apache-2.0",
"private": false,
"engines": {
"node": "^16"
},
"scripts": {
"build": "tsc",
"typecheck": "yarn build",
"lint": "eslint --ext=.tsx,.ts,.json src/",
"lint:fix": "yarn lint --fix",
"format": "prettier --loglevel error --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --ci --coverage",
"supercheck": "yarn format && yarn lint:fix && yarn typecheck && yarn test",
"release": "npx semantic-release"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/bunyan-prettystream": "^0.1.32",
"@types/jest": "^28.1.7",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@valora/eslint-config-typescript": "^1.0.1",
"@valora/prettier-config": "^0.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"shelljs": "^0.8.5",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"prettier": "@valora/prettier-config",
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits"
},
"dependencies": {
"bignumber.js": "^9.1.0",
"bunyan": "^1.8.15",
"ethers": "^5.7.0"
}
}