-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "offchain-payments-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run start\"",
"start": "ts-node server.ts",
"test": "lab -v **/*.test.js",
"integration": "npm run compile && concurrently -s last \"npx hardhat node\" \"lab -v **/*.integration.js && killall -INT node\"",
"int": "npm run compile && start-server-and-test",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@hapi/code": "^9.0.2",
"@hapi/lab": "^25.1.0",
"@types/node": "^14.18.36",
"@types/pg": "^8.6.6",
"concurrently": "^7.6.0",
"gts": "^3.1.1",
"hardhat": "^2.12.7",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
},
"dependencies": {
"@hapi/hapi": "^21.2.1",
"@metamask/eth-sig-util": "^5.0.2",
"dotenv": "^16.0.3",
"ethers": "^6.0.2",
"joi": "^17.7.0",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.28.0"
},
"engines": {
"node": ">=16.0.0"
},
"description": ""
}