-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1007 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1007 Bytes
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
{
"name": "verinode",
"version": "1.0.0",
"description": "A verification node system with REST and GraphQL APIs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest --no-coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"apollo-server-express": "^2.25.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"graphql": "^15.8.0",
"graphql-subscriptions": "^2.0.0",
"helmet": "^7.0.0",
"subscriptions-transport-ws": "^0.11.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/supertest": "^7.2.0",
"jest": "^29.5.0",
"supertest": "^7.2.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}