forked from o1-labs/Archive-Node-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.23 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
63
{
"name": "archive-node-graphql",
"version": "1.0.0",
"description": "A NodeJS GraphQL server for exposing data for o1js/zkApps",
"repository": {
"type": "git",
"url": "https://github.com/o1-labs/Archive-Node-API"
},
"main": "build/src/index.js",
"start": "build/src/index.js",
"type": "module",
"scripts": {
"build": "npm run clean && npx tsc",
"start": "node build/src/index.js",
"dev": "cross-env NODE_NO_WARNINGS=1 npx nodemon src/index.ts",
"test": "npx tsc && for testfile in $(find build/tests -type f -name '*.test.js'); do node $testfile; done",
"clean": "rimraf ./build",
"gen-test-mocks": "cross-env NODE_NO_WARNINGS=1 node --loader ts-node/esm tests/mocked_sql/generate_mock_data.ts",
"benchmark": "cross-env NODE_NO_WARNINGS=1 node --loader ts-node/esm benchmark/setup.ts && npx artillery run benchmark/graphql.yaml --output benchmark/report.json",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"codegen": "graphql-codegen-esm --config codegen.ts",
"compose": "docker compose up"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"artillery": "^2.0.0-36",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"nodemon": "^3.0.3",
"o1js": "*",
"prettier": "3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@envelop/core": "^4.0.0",
"@envelop/disable-introspection": "^5.0.0",
"@envelop/graphql-jit": "^6.0.1",
"@envelop/opentelemetry": "^5.0.0",
"@graphql-tools/executor-http": "^1.0.2",
"@graphql-tools/graphql-file-loader": "^8.0.0",
"@graphql-tools/load": "^8.0.0",
"@graphql-tools/schema": "^10.0.0",
"@opentelemetry/exporter-jaeger": "^1.15.2",
"@opentelemetry/sdk-trace-base": "^1.15.2",
"blakejs": "^1.2.1",
"dotenv": "^16.3.1",
"graphql": "^16.8.0",
"graphql-yoga": "4.0.4",
"postgres": "^3.3.5"
}
}