-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.11 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
{
"name": "dripswave-mint-rate-limiter",
"version": "1.0.0",
"description": "Rate limiter for NFT minting per address",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:testnet": "node scripts/with-env.mjs testnet tsc",
"build:staging": "node scripts/with-env.mjs staging tsc",
"build:mainnet": "node scripts/with-env.mjs mainnet tsc",
"start": "node dist/index.js",
"start:testnet": "node scripts/with-env.mjs testnet node dist/index.js",
"start:staging": "node scripts/with-env.mjs staging node dist/index.js",
"start:mainnet": "node scripts/with-env.mjs mainnet node dist/index.js",
"dev": "tsx watch src/index.ts",
"dev:testnet": "node scripts/with-env.mjs testnet tsx watch src/index.ts",
"dev:staging": "node scripts/with-env.mjs staging tsx watch src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"tsx": "^4.6.2",
"typescript": "^5.3.2",
"vitest": "^1.1.0"
}
}