-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.4 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
{
"name": "ultra-discord-uniq-roles-bot",
"version": "1.2.3",
"description": "Ultra Uniq Bot for Discord Servers",
"scripts": {
"build": "tsc --build --clean && tsc ",
"start": "tsc --build --clean && tsc && node dist/index.js",
"dev": "npx ts-node ./src/index.ts --mode=dev",
"test:file": "cross-env UNIT_TESTS=1 mocha --timeout 2000000 -r ts-node/register --exit",
"test": "npm run test:file \"tests/**/*.spec.ts\""
},
"license": "ISC",
"dependencies": {
"@ultraos/ultra-signer-lib": "^1.6.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"discord.js": "14.10.2",
"dotenv": "^16.0.3",
"enf-eosjs": "^23.0.0",
"express": "^4.18.2",
"mersenne-twister": "^1.1.0",
"mongodb": "^5.2.0",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/mersenne-twister": "^1.1.2",
"@types/node": "^18.15.3",
"@types/text-encoding": "^0.0.39",
"concurrently": "^7.6.0",
"ts-node": "^10.8.0",
"typescript": "^4.9.5"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
}
}