-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 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
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": "discreetly-server",
"version": "0.1.3",
"description": "",
"main": "dist/server.cjs",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"start": "node dist/server.cjs",
"watch": "rollup --config rollup.config.mjs --watch",
"serve": "nodemon -q dist/server.jcs",
"dev": "concurrently \"npm run watch\" \"npm run serve\"",
"test": "jest --detectOpenHandles --coverage",
"lint": "eslint ."
},
"engines": {
"node": "18.x.x"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@faker-js/faker": "^8.0.2",
"@prisma/client": "^5.5.2",
"@semaphore-protocol/identity": "^3.15.0",
"@socket.io/admin-ui": "^0.5.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"discreetly-claimcodes": "^1.1.5",
"discreetly-interfaces": "^0.1.42",
"dotenv": "^16.3.1",
"elliptic": "^6.5.4",
"ethereumjs-util": "^7.1.5",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^7.1.1",
"ffjavascript": "^0.2.60",
"helmet": "^7.0.0",
"idc-nullifier": "^0.0.8",
"mongodb": "^5.8.0",
"poseidon-lite": "^0.2.0",
"rlnjs": "^3.2.0",
"snarkjs": "^0.7.1",
"socket.io": "^4.6.2",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/snarkjs": "^0.7.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"concurrently": "^8.2.0",
"eslint": "^8.46.0",
"express-async-handler": "^1.2.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"prisma": "^5.5.2",
"rollup": "^3.26.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-include-sourcemaps": "^0.7.0",
"rollup-plugin-typescript2": "^0.35.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}