This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 2.45 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "verto-trading-post",
"version": "2.0.0",
"private": true,
"author": "The Verto Team",
"license": "MIT",
"main": "./dist/verto.js",
"bin": {
"verto": "./dist/verto.js"
},
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"dev": "node . run -k arweave.json",
"build": "rollup -c",
"prod": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"pkg": "yarn prod && pkg -t host dist/verto.js",
"pkg:linux": "yarn prod && pkg -t node14-linux dist/verto.js",
"pkg:macos": "yarn prod && pkg -t node14-macos dist/verto.js",
"pkg:win": "yarn prod && pkg -t node14-win dist/verto.js",
"pkg:arm": "echo not implemented",
"pkg:all": "yarn prod && pkg dist/verto.js",
"test": "rollup -c rollup.test.js && mocha 'build/verto.test.js'",
"test:integration": "ruby ./e2e/main.rb"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^9.4.0",
"@verto/lib": "^0.9.10",
"arweave": "^1.10.13",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"dotenv": "^8.2.0",
"enquirer": "^2.3.6",
"koa": "^2.13.0",
"node-fetch": "^2.6.1",
"rfs": "^9.0.3",
"rotating-file-stream": "^2.1.3",
"smartweave": "^0.4.27",
"sqlite": "^4.0.14",
"sqlite3": "^5.0.0",
"uuid": "^8.3.0",
"web3": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-yaml": "^2.1.1",
"@rollup/pluginutils": "^4.0.0",
"@types/chai": "^4.2.12",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/fecha": "^2.3.1",
"@types/koa": "^2.11.4",
"@types/koa__cors": "^3.0.1",
"@types/koa__router": "^8.0.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@types/node-fetch": "^2.5.7",
"@types/sinon": "^9.0.5",
"@types/sqlite3": "^3.1.6",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"module-alias": "^2.2.2",
"pkg": "^4.4.9",
"prettier": "^2.1.1",
"rollup": "^2.26.6",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"sinon": "^9.0.3",
"supertest": "^4.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}