-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.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
53
54
55
56
{
"name": "polyas-verifier",
"version": "1.0.0",
"description": "Polyas-Verifier is a web application for the individual second-device verification of the [POLYAS](https://www.polyas.com/) 3.0 E-Voting System for [individual verifiability](https://gi.de/wahlen/verifikation-der-gi-wahlen-tools-gesucht) (cast-as-intended verification), see also the original [publication](https://publikationen.bibliothek.kit.edu/1000117999). The POLYAS 3.0 E-Voting System is used in the [elections for the executive and the managing committee](https://gi.de/wahlen/) of the [German Informatics Society](https://gi.de/) in autumn 2023, see [polyas3.0-verifiable-1.3.2.pdf](doc/polyas3.0-verifiable-1.3.2.pdf) for its system specification and [second-device-spec-1.0.pdf](doc/second-device-spec-1.0.pdf) for the system specification of its second device verification protocol.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"dev": "vite --port 5000",
"mock": "vite --mode mock --port 5000",
"plain": "vite --mode deploy --port 5000",
"preview": "vite preview",
"build": "vite build",
"lint": "eslint --ext .ts,.vue ./src/"
},
"author": "Christoph Niederbudde, Michael Kirsten",
"license": "MIT",
"keywords": [],
"dependencies": {
"@noble/secp256k1": "^2.0.0",
"axios": "^1.7.4",
"jspdf": "^2.5.1",
"vite-plugin-environment": "^1.1.3",
"vue": "^3.3.4"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@vitejs/plugin-vue": "^4.3.4",
"babel-jest": "^29.6.4",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.12"
},
"directories": {
"doc": "doc",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kastel-security/polyas-core3-second-device-verification.git"
},
"bugs": {
"url": "https://github.com/kastel-security/polyas-core3-second-device-verification/issues"
},
"homepage": "https://github.com/kastel-security/polyas-core3-second-device-verification#readme"
}