-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "fpo-node",
"version": "1.5.0",
"description": "First Party Oracle",
"main": "index.js",
"repository": "[email protected]:fluxprotocol/fpo-node.git",
"author": "Franklin Waller <[email protected]>",
"license": "GPL-3.0-only",
"private": false,
"scripts": {
"test": "jest",
"dev": "yarn build && node 'dist/src/main.js'",
"start": "node 'dist/src/main.js'",
"build": "tsc -p ."
},
"dependencies": {
"big.js": "^6.1.1",
"bn.js": "^5.2.0",
"dotenv": "^15.0.0",
"ethers": "^5.5.4",
"express": "^4.17.3",
"jsonpath-plus": "^6.0.1",
"lodash.topath": "^4.5.2",
"near-api-js": "^0.44.2",
"web3": "^1.7.0",
"winston-daily-rotate-file": "^4.6.0",
"winston-transport-sentry-node": "^2.3.0"
},
"devDependencies": {
"@types/big.js": "^6.1.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/lodash.topath": "^4.5.6",
"@types/node": "^17.0.14",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}