-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "ergo-market-lib",
"version": "1.0.0",
"description": "Library for retrieving swap prices of ergo tokens",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"lint": "eslint src",
"test": "jest",
"watch": "npm run build -- --watch"
},
"author": "JimmyHoffa",
"license": "ISC",
"dependencies": {
"axios": "^0.25.0",
"json-bigint": "^1.0.0",
"mathjs": "^10.1.1",
"moment": "^2.29.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/json-bigint": "^1.0.1",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"import": "^0.0.6",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"process": "^0.11.10",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}