-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 3.75 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
78
79
80
81
82
83
84
85
86
{
"name": "gridfire",
"version": "1.0",
"description": "A web3 music store.",
"repository": "https://github.com/csleary/gridfire",
"main": "index.ts",
"type": "module",
"exports": {
"./*": "./*"
},
"scripts": {
"start": "node index.js",
"server": "nodemon --esm --ignore client --ignore hardhat --ignore web3-events --ignore worker -r dotenv/config index.ts dotenv_config_path=.env",
"client": "yarn --cwd ./client/ start",
"dev": "concurrently \"yarn run server\" \"yarn run client\" \"yarn --cwd ./worker/ run dev\" \"yarn --cwd ./web3-events/ run dev\" \"yarn run hardhat:node\"",
"dev-testnet": "concurrently \"yarn run server\" \"yarn run client\" \"yarn --cwd ./worker/ run dev\"",
"docker:push": "docker push csleary/gridfire-api && docker push csleary/gridfire-client && docker push csleary/gridfire-web3-events && docker push csleary/gridfire-worker",
"docker:build": "yarn run docker:build:api && yarn run docker:build:client && yarn run docker:build:web3-events && yarn run docker:build:worker",
"docker:build:api": "docker build -t csleary/gridfire-api .",
"docker:build:client": "docker build -f ./client/Dockerfile -t csleary/gridfire-client client/",
"docker:build:worker": "docker build -f ./worker/Dockerfile -t csleary/gridfire-worker worker/",
"docker:build:web3-events": "docker build -f ./web3-events/Dockerfile -t csleary/gridfire-web3-events web3-events/",
"docker:build:ipfs": "docker build -f ./manifests/production/ipfs/Dockerfile -t csleary/ipfs-node manifests/production/ipfs/",
"hardhat:compile": "yarn --cwd ./hardhat/ hardhat compile --force",
"hardhat:dev": "npm run hardhat:compile && npm run hardhat:deploy && npm run hardhat:fund",
"hardhat:deploy": "yarn --cwd ./hardhat/ hardhat --network localhost run scripts/deploy-dev.ts",
"hardhat:deploy:mainnet": "yarn --cwd ./hardhat/ hardhat compile --force && yarn --cwd ./hardhat/ hardhat deploy --network arb-mainnet",
"hardhat:deploy:testnet": "yarn --cwd ./hardhat/ hardhat run scripts/deploy-arb-rinkeby.js",
"hardhat:fund": "yarn --cwd ./hardhat/ hardhat run --network localhost scripts/fundAccounts.ts",
"hardhat:node": "yarn --cwd ./hardhat/ hardhat node",
"hardhat:test": "yarn --cwd ./hardhat/ hardhat test --network localhost",
"hardhat:upgrade:mainnet": "yarn --cwd ./hardhat/ hardhat compile --force && yarn --cwd ./hardhat/ hardhat upgrade",
"worker": "yarn --cwd ./worker/ run dev"
},
"author": "Christopher Leary",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.254.0",
"@aws-sdk/lib-storage": "^3.259.0",
"amqplib": "^0.10.3",
"archiver": "^5.3.0",
"axios": "^1.3.4",
"busboy": "^1.0.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^2.0.0",
"dotenv": "^16.0.0",
"ethers": "^6.7.1",
"express": "^4.17.1",
"form-data": "^4.0.0",
"ipfs-http-client": "^60.0.0",
"jsonwebtoken": "^9.0.0",
"mime-types": "^2.1.34",
"mongoose": "^7.5.3",
"nodemailer": "^6.4.18",
"passport": "0.5",
"passport-custom": "^1.1.1",
"passport-local": "^1.0.0",
"sharp": "^0.32.4",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/archiver": "^5.3.1",
"@types/busboy": "^1.5.0",
"@types/cookie-parser": "^1.4.3",
"@types/cookie-session": "^2.0.44",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.4.5",
"@types/passport": "^1.0.7",
"concurrently": "^7.1.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^2.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"nodemonConfig": {
"ignore": [
"client/*",
"hardhat/*",
"tmp/*"
]
}
}