-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (85 loc) · 2.53 KB
/
package.json
File metadata and controls
86 lines (85 loc) · 2.53 KB
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
83
84
85
{
"name": "geo-privacy",
"version": "0.1.0",
"description": "Zero-Knowledge Geolocation Proof System",
"main": "src/backend/server.ts",
"scripts": {
"start:frontend": "react-scripts start",
"start:backend": "node dist/backend/server.js",
"dev": "nodemon src/backend/server.ts",
"build": "react-scripts build",
"noir:compile:backend": "wsl bash -c \"cd '/mnt/c/__Workspace and Data__/Projet/AztecNoir/GeoPrivacy/src/circuits' && ~/.nargo/bin/nargo compile\"",
"build:backend": "npm run noir:compile:backend && tsc -p tsconfig.backend.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eject": "react-scripts eject",
"docs:generate": "typedoc --out docs/api src"
},
"keywords": [
"zero-knowledge",
"geolocation",
"privacy"
],
"author": "AztecNoir Team",
"license": "MIT",
"dependencies": {
"config": "^3.3.9",
"dotenv": "^16.3.1",
"@aztec/bb.js": "latest",
"@noir-lang/noir_js": "latest",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"framer-motion": "^11.0.22",
"helmet": "^7.0.0",
"i18next": "23.7.18",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "13.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/helmet": "^4.0.0",
"@types/i18next": "^13.0.0",
"@types/jest": "^29.5.14",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.6",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-i18next": "^8.1.0",
"@types/react-test-renderer": "^18.0.1",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/testing-library__react-hooks": "^4.0.0",
"glob": "^10.3.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.6.4",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.0.1",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JulesWi/GeoPrivacy.git"
},
"bugs": {
"url": "https://github.com/JulesWi/GeoPrivacy/issues"
},
"homepage": "https://github.com/JulesWi/GeoPrivacy#readme"
}