-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 915 Bytes
/
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
{
"name": "unikname-faucet",
"version": "1.1.0",
"private": true,
"description": "A faucet to gift SUNIK tokens to Unikname users 🤑💸",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src/index.ts"
},
"scripts": {
"start": "node dist/index.js",
"start:ts": "ts-node src/index.ts",
"dev": "nodemon --watch \"src/**/*.ts\" --exec ts-node src/index.ts",
"build": "tsc"
},
"author": "rigwild <me@rigwild.dev>",
"license": "MIT",
"dependencies": {
"@uns/crypto": "^5.6.2",
"@uns/ts-sdk": "^4.4.1",
"cron": "^1.8.2",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@types/bytebuffer": "^5.0.42",
"@types/cron": "^1.7.3",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"typescript": "^4.3.5"
}
}