-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "ura-bot",
"license": "MIT",
"description": "Bot to share uranium's market news and stocks price on X.com (Twitter) and Nostr.",
"homepage": "https://github.com/victorabarros/ura-bot",
"scripts": {
"preinstall": "rm -rf node_modules",
"prebuild": "rm -rf dist",
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"lint": "yarn run eslint --fix .",
"precommit": "yarn lint",
"prepare-husky": "husky install server/.husky",
"pretest": "yarn lint && yarn build",
"test": "echo 'TODO fix me'"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.0",
"@types/axios": "0.14.0",
"@types/express": "4.17.13",
"@types/jest": "^27.0.3",
"@types/moment-timezone": "^0.5.30",
"@types/node": "16.11.7",
"@types/pg": "^8.6.1",
"@types/request": "^2.48.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"ts-node-dev": "1.1.8"
},
"dependencies": {
"@nostr-dev-kit/ndk": "^2.8.2",
"axios": "0.24.0",
"express": "4.17.1",
"http-status": "1.5.0",
"moment-timezone": "^0.5.45",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"replicate": "^0.32.1",
"request": "^2.88.2",
"typescript": "5.4.5"
}
}