forked from akash-network/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 764 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 764 Bytes
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
{
"name": "@akashnetwork/database",
"version": "1.0.0",
"description": "Database code and schema that is shared between multiple console projects.",
"license": "Apache-2.0",
"author": "Akash Network",
"exports": {
"./package.json": "./package.json",
"./dbSchemas": "./dbSchemas/index.ts",
"./dbSchemas/*": "./dbSchemas/*/index.ts",
"./chainDefinitions": "./chainDefinitions.ts",
"./plans.ts": "./plans.ts"
},
"scripts": {
"format": "prettier --write ./*.{ts,json} **/*.{ts,json}",
"lint": "eslint .",
"validate:types": "tsc -p tsconfig.build.json --noEmit && echo"
},
"dependencies": {
"@akashnetwork/net": "*",
"dotenv": "^12.0.4",
"sequelize": "^6.21.3",
"sequelize-typescript": "^2.1.5"
}
}