-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2 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
{
"name": "arnotify-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "docker-compose up -d && dotenv -e .env.dev -- ts-node-dev src",
"stop": "docker-compose down",
"build": "npx tsc",
"prod.start": "docker-compose -f docker-compose.production.yml up -d",
"prod.stop": "docker-compose -f docker-compose.production.yml down",
"prod.build": "docker-compose -f docker-compose.production.yml build",
"prod.restart": "docker-compose -f docker-compose.production.yml restart",
"sequelize": "sequelize",
"db:dev:migrate": "dotenv -e .env.dev -- npm run db:migrate",
"db:migrate": "sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MetaweaveTeam/arNotify-node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MetaweaveTeam/arNotify-node/issues"
},
"homepage": "https://github.com/MetaweaveTeam/arNotify-node#readme",
"dependencies": {
"@twitter-api-v2/plugin-rate-limit": "^1.1.0",
"@types/express-session": "^1.17.5",
"@types/node-cron": "^3.0.6",
"arweave": "^1.11.6",
"axios": "^1.1.3",
"cli-color": "^2.0.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"helmet": "^6.0.0",
"mariadb": "^3.0.2",
"morgan": "^1.10.0",
"node-cron": "3.0.0",
"sequelize": "^6.28.0",
"smartweave": "^0.4.49",
"twitter-api-v2": "^1.12.9",
"warp-contracts": "^1.2.37"
},
"devDependencies": {
"@types/cli-color": "^2.0.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"concurrently": "^7.5.0",
"dotenv-cli": "^6.0.0",
"nodemon": "^2.0.20",
"sequelize-cli": "^6.5.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.0"
}
}