-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "zklocus-integration-oracle",
"version": "0.1.2",
"description": "A middleware for seamless integration of authenticated private geolocation capabilities using zkLocus, designed for easy, secure, and efficient integration into any system.",
"main": "build/src/index.js",
"type": "module",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "echo \"WARNING: no automated tests setup\" && exit 0"
},
"keywords": [
"zkLocus",
"geolocation",
"authenticated",
"oracle",
"private",
"integration",
"blockchain",
"zero-knowledge",
"security",
"privacy",
"zkSNARK",
"Mina Protocol",
"Mina",
"O1JS"
],
"author": "Illya Gerasymchuk",
"license": "MIT",
"bin": {
"zklocus-oracle": "./bin/zklocus-oracle.sh"
},
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mina-signer": "^2.1.1",
"zklocus": "^0.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.9.2",
"typescript": "^4.0.0"
}
}