-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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": "validate",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:fiatconnect/validate.git",
"author": "Valora Inc",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"typecheck": "yarn build",
"validate": "jest",
"format": "prettier --loglevel error --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "yarn lint --fix"
},
"prettier": "@valora/prettier-config",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/jest": "^29.5.14",
"@types/lodash.omit": "^4.5.9",
"@types/node": "^17.0.45",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@valora/eslint-config-typescript": "^1.0.2",
"@valora/prettier-config": "^0.0.1",
"eslint": "^8.48.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@fiatconnect/fiatconnect-sdk": "^0.5.70",
"@fiatconnect/fiatconnect-types": "^13.3.10",
"api-contract-validator": "^2.2.8",
"axios": "^0.27.2",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.4.7",
"ethers": "^5.7.2",
"jest": "^29.7.0",
"lodash.omit": "^4.5.0",
"siwe": "^3.0.0",
"swagger-object-validator": "^1.4.5",
"ts-jest": "^29.2.5",
"uuid": "^11.0.5",
"yargs": "^17.7.2",
"zod": "^3.24.1"
}
}