forked from fiatconnect/api-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 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
{
"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\"",
"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": "^6.1.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"@types/yargs": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@valora/eslint-config-typescript": "^0.0.1",
"@valora/prettier-config": "^0.0.1",
"ajv": "^8.11.0",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"ethers": "^5.6.9",
"express": "^4.18.1",
"express-session": "^1.17.3",
"prettier": "^2.7.1",
"siwe": "^1.1.6",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/express-session": "^1.17.5",
"@types/jest": "^27.5.2",
"@types/node-fetch": "2",
"@types/supertest": "^2.0.12",
"jest": "^27.5.1",
"node-fetch": "2",
"supertest": "^6.2.4",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1"
}
}