-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.77 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": "centralized-eth-erc20-payments",
"repository": "https://github.com/danstarns/centralized-eth-erc20-payments",
"author": "[email protected]",
"scripts": {
"test-api": "jest --forceExit api",
"test-e2e": "jest --forceExit --testTimeout=999999 e2e",
"test-contracts": "truffle test",
"build-contracts": "truffle compile",
"dev-deploy": "node ./src/contracts/dev-deploy",
"start": "node ./src/index.js",
"test": "npm run test-contracts && npm run test-e2e && npm run test-api",
"docker-dev": "docker-compose -f ./docker-compose.yaml -f docker-compose-neo4j.yaml -f docker-compose-redis.yaml -f docker-compose-ganache.yaml --env-file ./.env up --build",
"docker-test": "docker-compose -f ./docker-compose-test.yaml -f docker-compose-neo4j.yaml -f docker-compose-redis.yaml -f docker-compose-ganache.yaml --env-file ./.env.docker-compose up --build --abort-on-container-exit",
"install-all": "cd ./contracts && npm install && cd ../services/api && npm install && cd ../receiver && npm run install",
"docker-ganache": "docker-compose -f docker-compose-ganache.yaml --env-file ./.env up --build"
},
"dependencies": {
"@neo4j/graphql-ogm": "^2.3.0",
"bcrypt": "^5.0.1",
"bull": "^4.1.0",
"dotenv": "^10.0.0",
"ethereumjs-tx": "^2.1.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"ioredis": "^4.28.0",
"jsonwebtoken": "^8.5.1",
"neo4j-driver": "^4.3.4",
"solc": "^0.8.10",
"web3": "^1.6.0"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.3.2",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"debug": "^4.3.2",
"env.gql": "^1.0.0",
"faker": "^5.5.3",
"jest": "^27.3.1",
"superagent": "^6.1.0",
"supertest": "^6.1.6",
"truffle": "^5.4.18"
}
}