-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 3.22 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "test",
"version": "0.1.5",
"description": "",
"author": "",
"license": "Apache-2.0",
"keywords": [
"mina-zkapp",
"mina-zk-app",
"mina-dapp",
"zkapp"
],
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"build-snarkyjs": "cd src/snarkyjs && npm run build && cd ..",
"build-proof_aggregator": "cd src/proof_aggregator && npm run build && cd ..",
"demo": "npx tsc -p tsconfig.json && node --no-warnings --experimental-specifier-resolution=node ./build/src/demo",
"demo:operator": "npx tsc -p tsconfig.json && node --no-warnings --experimental-specifier-resolution=node ./build/src/rollup_operator/index.js",
"demo:client": "npx tsc -p tsconfig.json && node --no-warnings --experimental-specifier-resolution=node ./build/src/client_sdk/index.js",
"deploy": "npx tsc -p tsconfig.json && node --no-warnings --experimental-specifier-resolution=node ./build/src/rollup_operator/setup/deploy",
"build": "npm run codegen && tsc -p tsconfig.json",
"coverage": "node --experimental-vm-modules --experimental-wasm-modules --experimental-wasm-threads --no-warnings node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"prepare": "husky install",
"test": "node --experimental-vm-modules --experimental-wasm-modules --experimental-wasm-threads --no-warnings node_modules/jest/bin/jest.js --coverage --config jest.config.js",
"testw": "node --experimental-vm-modules --experimental-wasm-modules --experimental-wasm-threads --no-warnings node_modules/jest/bin/jest.js --watch",
"lint": "npx eslint src/* --fix",
"integration": "npx tsc -p tsconfig.json && node --no-warnings --experimental-specifier-resolution=node ./build/src/test/integration/run",
"codegen": "graphql-codegen --config codegen.yml"
},
"lint-staged": {
"**/*": [
"eslint src/* --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.159.0",
"abstract-level": "^1.0.3",
"apollo-server-core": "^3.11.1",
"apollo-server-express": "^3.11.1",
"aws-sdk": "^2.1204.0",
"base-x": "^4.0.0",
"body-parser": "^1.20.0",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"graphql": "^16.6.0",
"jayson": "^4.0.0",
"level": "^8.0.0",
"mina-signer": "^1.1.0",
"pg": "^8.7.3",
"proof-aggregator": "file:src/proof_aggregator",
"snarkyjs": "file:src/snarkyjs"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@graphql-codegen/cli": "2.16.2",
"@graphql-codegen/typescript": "2.8.6",
"@graphql-codegen/typescript-resolvers": "2.7.11",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.7.0",
"eslint-plugin-snarkyjs": "^0.3.0",
"husky": "^7.0.1",
"jest": "^27.3.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}