forked from fiatconnect/validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "validate",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:fiatconnect/validate.git",
"author": "Valora Inc",
"license": "MIT",
"scripts": {
"build": "tsc",
"typecheck": "yarn build",
"validate": "jest",
"format": "prettier --loglevel error --write .",
"format:check": "prettier --check .",
"lint": "eslint --ext=.tsx,.ts,.json src/",
"lint:fix": "yarn lint --fix"
},
"prettier": "@valora/prettier-config",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/jest": "^29.5.0",
"@types/node": "^17.0.31",
"@types/yargs": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@valora/eslint-config-typescript": "^1.0.1",
"@valora/prettier-config": "^0.0.1",
"eslint": "^8.36.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.8.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@fiatconnect/fiatconnect-sdk": "^0.5.2",
"@fiatconnect/fiatconnect-types": "^13.0.2",
"api-contract-validator": "^2.2.8",
"axios": "^0.27.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.6.8",
"jest": "^29.5.0",
"swagger-object-validator": "^1.4.5",
"ts-jest": "^29.0.5",
"yargs": "^17.4.1",
"zod": "^3.21.4"
}
}