-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "liquidation",
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "concurrently 'npm:build-watch' 'npm:run-watch'",
"build-watch": "tsdx watch",
"run-watch": "nodemon --config nodemon.json",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"author": "Christoph Michel",
"module": "dist/server.esm.js",
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.1",
"@types/lodash": "^4.14.168",
"@types/node-fetch": "^2.5.7",
"concurrently": "^6.0.0",
"husky": "^4.3.4",
"nodemon": "^2.0.7",
"size-limit": "^4.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
},
"dependencies": {
"@protonprotocol/protonjs": "^21.0.37",
"bignumber.js": "^9.0.1",
"ccxt": "^1.40.83",
"dotenv": "^8.2.0",
"eosjs": "^21.0.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
}
}