-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
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
{
"name": "fiatconnect-api",
"version": "0.0.1",
"description": "An example implementation of a FiatConnect-compliant API",
"main": "index.js",
"engines": {
"node": "^16"
},
"scripts": {
"build": "tsc",
"format": "prettier --loglevel error --write \"./src/**/*.ts\"",
"format:check": "prettier --check \"./src/**/*.ts\"",
"lint": "eslint --ext=.tsx,.ts --fix src/",
"start": "node dist/index.js",
"test": "jest"
},
"prettier": "@valora/prettier-config",
"license": "MIT",
"dependencies": {
"@celo/utils": "^1.5.2",
"@fiatconnect/fiatconnect-types": "^13.3.11",
"@types/express": "^5.0.0",
"@types/node": "^17.0.45",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@valora/eslint-config-typescript": "^0.0.1",
"@valora/prettier-config": "^0.0.1",
"dotenv": "^16.4.7",
"eslint": "^8.25.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"ethers": "^5.8.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"prettier": "^3.5.3",
"siwe": "^1.1.6",
"typescript": "^5.8.2",
"yargs": "^17.7.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express-session": "^1.18.0",
"@types/jest": "^27.5.2",
"@types/node-fetch": "2",
"@types/supertest": "^2.0.16",
"jest": "^27.5.1",
"node-fetch": "2",
"supertest": "^6.3.4",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.2"
}
}