-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "aegis-signer-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch src --exec tsx src/index.ts",
"dev:pt": "nodemon --watch src --exec tsx src/pt-api.ts",
"build": "tsc",
"test:sign": "tsx scripts/test-sign.ts",
"test:redeem": "tsx scripts/test-redeem.ts",
"test:pt": "tsx scripts/test-pt.ts",
"test:simulate-token-sale": "tsx scripts/test-simulate-token-sale.ts",
"start": "node dist/index.js",
"start:pt": "node dist/pt-api.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Diffuse-fi/aegis-signer-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/Diffuse-fi/aegis-signer-api/issues"
},
"homepage": "https://github.com/Diffuse-fi/aegis-signer-api#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"swagger-ui-express": "^5.0.1",
"viem": "^2.41.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^5.1.3",
"@types/morgan": "^1.9.10",
"@types/node": "^24.10.1",
"@types/swagger-ui-express": "^4.1.8",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}