-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "ton-foundationdb",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ex3ndr/ton-foundationdb.git",
"license": "MIT",
"scripts": {
"build": "rm -fr build && tsc",
"start": "node ./build/index.js",
"dev": "yarn build && yarn start",
"stop": "pm2 stop indexer",
"deploy": "pm2 stop indexer && pm2 start --time --name indexer ./src/index.ts",
"proto": "protoc --ts_out . --proto_path . ./src/storage/storage.proto"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@openland/context": "^0.5.2",
"@openland/foundationdb": "^11.13.0",
"@openland/lifetime": "^0.2.1",
"@protobuf-ts/plugin": "^2.0.7",
"@protobuf-ts/protoc": "^2.0.7",
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"apollo-server": "^3.5.0",
"bn.js": "^5.2.0",
"chalk": "^4.1.2",
"date-fns": "^2.25.0",
"foundationdb": "^1.1.2",
"gql": "^1.1.2",
"graphql": "^16.0.1",
"jest": "^27.3.1",
"protobufjs": "^6.11.2",
"teslabot": "^1.2.1",
"ton": "^4.25.0",
"ts-proto": "^1.85.0",
"typescript": "^4.4.4"
},
"config": {
"protocVersion": "latest"
}
}