-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "hollowdb-express",
"description": "hollowdb express server",
"version": "0.1.0",
"main": ".build/src/index.js",
"repository": "https://github.com/firstbatchxyz/hollowdb-express.git",
"author": "FirstBatch Team <[email protected]>",
"contributors": [
"Faruk Can Özkan <[email protected]>",
"Erhan Tezcan <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">=10.4.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^6.1.5",
"hollowdb": "^1.2.4",
"http-status-codes": "^2.2.0",
"joi": "^17.9.2",
"warp-contracts": "^1.4.5",
"warp-contracts-lmdb": "^1.1.10"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.6.3",
"arlocal": "^1.1.60",
"chai": "^4.3.7",
"gts": "^5.0.1",
"hollowdb-prover": "^0.1.4",
"mocha": "^10.2.0",
"node-fetch": "2",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"warp-contracts-plugin-deploy": "^1.0.8"
},
"scripts": {
"start:dev": "export NODE_ENV=dev && yarn start",
"start:test": "export NODE_ENV=test && yarn start",
"start": "yarn clean:cache && yarn build && node build/src/index.js",
"build": "yarn compile",
"lint": "gts lint",
"clean": "gts clean",
"clean:cache": "rimraf ./cache",
"compile": "tsc",
"precompile": "yarn clean",
"fix": "gts fix",
"test": "NODE_ENV=test npx mocha",
"posttest": "yarn lint"
}
}