-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
71 lines (71 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
64
65
66
67
68
69
70
71
{
"name": "zkdb-monorepo",
"version": "1.0.2",
"private": true,
"type": "module",
"workspaces": [
"packages/smart-contract",
"packages/permission",
"packages/common",
"packages/storage",
"packages/kubo",
"packages/mina-service",
"packages/api",
"packages/zkdb",
"packages/serverless"
],
"scripts": {
"clean": "find $(pwd) -name 'node_modules' -type d -exec rm -rf {} \\; || true && find $(pwd) -name 'build' -type d -exec rm -rf {} \\; || true",
"build": "yarn workspaces run build",
"clean-build": "yarn clean && yarn && yarn build",
"gen:doc": "spectaql spectaql-config.yml",
"update": "node update-dependencies.js",
"lint": "npx eslint -c ./eslint.config.js ./packages/**/*.ts"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.4",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/cors": "^2.8.17",
"@types/express-fileupload": "1.5.1",
"@types/express-session": "1.18.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"babel-jest": "^29.7.0",
"eslint": "^9.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-o1js": "^0.4.0",
"eslint-plugin-require-extensions": "^0.1.3",
"globals": "^15.14.0",
"graphql-request": "^7.1.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"spectaql": "^3.0.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typedoc": "^0.27.5",
"typescript": "^5.7.2"
},
"dependencies": {
"bullmq": "5.34.3",
"graphql": "16.10.0",
"graphql-type-json": "0.3.2",
"joi": "17.13.3",
"mongodb": "6.12.0",
"o1js": "2.2.0"
}
}