-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "remittance",
"version": "1.0.0",
"description": "ETH Community Blockstars 2.0's Project 2 - Remittance",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"dependencies": {
"ganache-cli": "^6.5.1",
"http-server": "^14.1.0",
"husky": "^8.0.0",
"jquery": "3.7.1",
"truffle-assertions": "^0.9.1",
"truffle-contract": "4.0.31",
"web3": "^4.0.1"
},
"devDependencies": {
"chai": "5.0.0",
"chai-as-promised": "7.1.1",
"file-loader": "^6.2.0",
"truffle": "^5.0.8",
"webpack": "^5.4.0",
"webpack-cli": "^5.0.0"
},
"scripts": {
"start": "bash startGanache.sh && ./node_modules/.bin/truffle migrate --reset && ./node_modules/.bin/webpack-cli --mode development && http-server ./build/app -a 0.0.0.0 -c-1",
"build": "truffle compile && bash startGanache.sh && webpack-cli --mode development",
"test": "bash startGanache.sh && truffle test && bash stopGanache.sh"
},
"precommit": "truffle compile",
"testChain": "bash startGanache.sh && truffle test && bash stopGanache.sh",
"repository": {
"type": "git",
"url": "git+https://github.com/remedcu/Remittance.git"
},
"keywords": [
"Blockchain",
"FinTech"
],
"author": "Shebin John",
"license": "ISC",
"bugs": {
"url": "https://github.com/remedcu/Remittance/issues"
},
"homepage": "https://github.com/remedcu/Remittance#readme"
}