-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "xrpl-mint-bot",
"version": "0.0.1",
"description": "An automated minting bot for nonfungible tax credits",
"main": "dist/src/index.js",
"repository": "https://github.com/thebettermint/xrpl-mint-bot.git",
"author": "interc0der <[email protected]>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"jest": "jest",
"jest:array-address": "jest -t 'registry array-address'",
"jest:org-by-ein": "jest -t 'registry org-by-ein'",
"jest:wallet-by-ein": "jest -t 'registry wallet-by-ein'",
"jest:init-by-tag": "jest -t 'registry init-by-tag'",
"jest:tier-by-amount": "jest -t 'registry tier-by-amount'",
"jest:asset-by-amount": "jest -t 'registry asset-by-amount'",
"jest:parse-0": "jest -t 'credit parse-0'",
"jest:parse-1": "jest -t 'credit parse-1'",
"jest:parse-2": "jest -t 'credit parse-2'",
"jest:parse-3": "jest -t 'credit parse-3'",
"jest:wrong-dest": "jest -t 'credit wrong-dest'",
"c": "rimraf ./dist && tsc && cp .env ./dist/.env",
"start:api": "node ./dist/src/api/index.js",
"start:bot": "node ./dist/src/index.js",
"start": "npm run start:api & npm run start:bot"
},
"scriptsComments": {
"c": "Compiles typescript",
"jest": "Runs test for code within /src with current tsconfig and types",
"test": "Runs test compile and unit test for all predefined configuration",
"test:all": "Runs test compiles and unit test for all configurations within ./config directory"
},
"dependencies": {
"@thebettermint/registry": "0.1.2",
"@thebettermint/tsconfig": "0.0.3",
"@thebettermint/xrpl-tx-parser": "0.0.6",
"apollo-server-core": "^3.9.0",
"apollo-server-express": "^3.9.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.7.0",
"mongoose": "^6.4.1",
"path": "^0.12.7",
"typescript": "^4.7.4",
"xrpl": "^2.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5"
}
}