-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "local-currency-core-api",
"version": "1.1.12",
"description": "Simple REST API to query and inititate actions on the Humanity Cash local currency smart contracts",
"main": "index.js",
"engines": {
"node": ">=12 <13"
},
"repository": "https://github.com/humanity-cash/local-currency-core.git",
"author": "Aaron Boyd <aaronmboyd@gmail.com>",
"contributors": [
"Aaron Boyd Keyko GmbH",
"Sebastian Gerske Keyko GmbH",
"Esraa Jbara Keyko GmbH"
],
"license": "MIT",
"scripts": {
"test": "jest --passWithNoTests --forceExit --detectOpenHandles --verbose --config=jest.config.js",
"test:contracts": "yarn test --testPathPattern='crypto'",
"test:server": "yarn test --testPathPattern='server'",
"test:dwolla": "yarn test --testPathPattern='dwolla'",
"test:token": "yarn test --testPathPattern='token'",
"test:reports": "yarn test --testPathPattern='Reports'",
"test:mw": "yarn test --testPathPattern='Middlewares'",
"test:public": "yarn test --testPathPattern='public'",
"test:operator": "yarn test --testPathPattern='operator'",
"test:external": "yarn test --testPathPattern='ExternalService'",
"test:email": "yarn test --testPathPattern='email'",
"test:auth": "yarn test --testPathPattern='APIAuthService.integration.test'",
"test:db": "jest --passWithNoTests --forceExit --detectOpenHandles --testPathPattern='integration' --config=jest.db.config.js",
"test:user-pp": "yarn test --testPathPattern='UserProfilePicture'",
"coverage:server": "yarn test:server --coverage",
"coverage:contracts": "yarn test:contracts --coverage",
"coverage": "yarn coverage:server",
"build:watch": "tsc --watch",
"build": "yarn patch-dwolla-v2 && tsc",
"start:docker": "docker compose up",
"start:docker-build": "docker compose up --build",
"start": "node ./dist/index.js",
"start:watch": "ts-node-dev --respawn --transpile-only src/index.ts",
"eslint": "npx eslint src/*.ts src/**/*.ts src/**/**/*.ts",
"prettier": "prettier --write ./src/*.ts ./src/**/**/*.ts ./src/**/*.ts",
"patch-dwolla-v2": "cp src/utils/index.d.ts.patch node_modules/dwolla-v2/src/index.d.ts",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.47.0",
"@aws-sdk/client-secrets-manager": "^3.47.0",
"@aws-sdk/client-ses": "^3.55.0",
"@celo/contractkit": "^1.2.0",
"@southlane/cognito-jwt-verifier": "^0.1.7",
"@types/express": "^4.17.13",
"@types/moment": "^2.13.0",
"axios": "^0.21.0",
"buffer": "^6.0.3",
"dwolla-v2": "^3.2.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"luxon": "^2.3.1",
"moment": "^2.29.1",
"mongoose": "^5.12.14",
"morgan": "^1.10.0",
"sinon": "^11.1.2",
"uuid": "^8.3.1",
"web3": "1.3.5"
},
"devDependencies": {
"@types/faker": "^5.5.6",
"@types/jest": "^26.0.24",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai-http": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-spellcheck": "^0.0.19",
"faker": "^5.5.3",
"jest": "^27.0.4",
"module-alias": "^2.2.2",
"mongodb-memory-server": "^7.2.0",
"prettier": "^2.1.2",
"snyk": "^1.424.4",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
},
"snyk": true
}