-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "@arkecosystem/core-database",
"version": "3.8.2-rc.0",
"description": "Database Interface for ARK Core",
"license": "MIT",
"contributors": [
"Brian Faust <brian@ark.io>",
"Joshua Noack <joshua@ark.io>"
],
"files": [
"dist"
],
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "yarn clean && yarn compile",
"build:watch": "yarn clean && yarn compile -w",
"build:docs": "../../node_modules/typedoc/bin/typedoc --out docs src",
"clean": "rimraf dist",
"compile": "node ../../node_modules/typescript/bin/tsc",
"prepublishOnly": "yarn build",
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-kernel": "3.8.2-rc.0",
"@arkecosystem/crypto": "3.8.2-rc.0",
"@arkecosystem/utils": "1.3.1",
"dayjs": "1.11.10",
"joi": "17.12.1",
"pg": "8.11.3",
"reflect-metadata": "0.2.1",
"typeorm": "0.2.25"
},
"engines": {
"node": ">=10.x"
},
"publishConfig": {
"access": "public"
}
}