-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "@eyblockchain/zokrates-worker",
"description": "ZoKrates worker",
"repository": "https://github.com/EYBlockchain/zokrates-worker.git",
"license": "CC0-1.0",
"version": "0.0.0-semantically-released",
"private": true,
"scripts": {
"start": "node ./src/index.mjs",
"dev": "nodemon ./src/index.mjs",
"setup": "./bin/setup.sh",
"test": "npx mocha",
"fix": "npm run format && npm run lint -- --fix",
"format": "prettier --write \"**/*.{json,css,scss,md}\"",
"lint": "eslint .",
"lint:md": "markdownlint -i node_modules .",
"lint:commit": "cod-scripts commitlint",
"validate": "cod-scripts validate"
},
"eslintConfig": {
"extends": [
"./node_modules/cod-scripts/eslint.js"
]
},
"husky": {
"hooks": {
"pre-commit": "cod-scripts pre-commit",
"commit-msg": "cod-scripts commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@eyblockchain/zokrates-zexe.js": "^0.3.1",
"@semantic-release/git": "^9.0.0",
"amqplib": "^0.10.3",
"body-parser": "^1.20.1",
"config": "^3.3.2",
"cors": "2.8.5",
"eslint-plugin-react-hooks": "^1.7.0",
"express": "^4.18.2",
"express-fileupload": "^1.1.7-alpha.4",
"mocha": "^10.2.0",
"tar": "^6.1.13",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cod-scripts": "^11.0.0",
"markdownlint-cli": "^0.32.2",
"nodemon": "^2.0.20"
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"output/",
"circuits/",
"*.json"
]
}
}