-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "probity-api",
"version": "1.0.0",
"description": "Secure backend reference implementation for Probity",
"main": "dist/src/server.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "yarn build",
"start": "node dist/src/server.js",
"dev": "NODE_ENV=development nodemon --config nodemon.json src/server.ts",
"test": "NODE_ENV=test jest --maxWorkers=1 --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trustline-inc/probity-api.git"
},
"author": "Matthew Rosendin <matt@trustline.co>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/trustline-inc/probity-api/issues"
},
"homepage": "https://github.com/trustline-inc/probity-api#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.2",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^16.3.3",
"@types/pino-http": "^5.4.1",
"@types/supertest": "^2.0.10",
"@types/twilio": "^2.11.0",
"concurrently": "^6.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.0",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^7.7.7",
"express-pino-logger": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.17",
"modern-treasury": "^0.4.0",
"pg": "^8.5.1",
"pino-http": "^5.5.0",
"pino-pretty": "^5.0.2",
"plaid": "^12.0.0",
"superagent": "^6.1.0",
"supertest": "^6.1.3"
}
}