-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "@sky-ring/orbit",
"version": "0.1.2",
"description": "Mini TON Blockchain Server",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && chmod +x ./dist/main.js",
"prepublish": "npm run build && npm run copy-files",
"dev": "ts-node-dev ./src/main.ts --respawn --transpileOnly",
"prod": "tsc && node .build/main.js",
"codegen": "graphql-codegen --config codegen.yml",
"test": "mocha -r ts-node/register src/tests/**/*.test.ts",
"copy-files": "copyfiles -u 1 src/**/*.graphql dist"
},
"repository": {
"type": "git",
"url": "github.com/sky-ring/orbit"
},
"bin": {
"orbit": "./dist/main.js"
},
"author": "Amin Rezaei",
"license": "MIT",
"dependencies": {
"@graphql-tools/executor-http": "^1.0.0",
"@graphql-tools/graphql-file-loader": "latest",
"@graphql-tools/json-file-loader": "latest",
"@graphql-tools/load": "latest",
"@graphql-tools/schema": "latest",
"@graphql-tools/url-loader": "latest",
"@ton-community/sandbox": "^0.11.0",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.3.0",
"graphql-tools": "^9.0.0",
"graphql-yoga": "^4.0.0",
"level": "^8.0.0",
"ton": "^13.5.0",
"ton-crypto": "^3.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-resolvers": "^4.0.0",
"@types/chai": "4.3.5",
"@types/express": "^4.17.17",
"@types/level": "^6.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.2",
"chai": "*",
"copyfiles": "^2.4.1",
"mocha": "*",
"prettier": "2.8.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
}
}