-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.85 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
{
"name": "satoshi-certs",
"version": "0.0.2",
"engines": {
"node": ">=8.11.2"
},
"description": "Blockchain Smart Contracts Enabled Certification service for generation and verification",
"scripts": {
"copy-contracts-build": "echo \" Copying build/contracts/* files into client/src/contracts \" && copyfiles -f build/contracts/* client/src/contracts",
"deploy:local": "(truffle.cmd migrate --reset || truffle migrate --reset) && npm run copy-contracts-build",
"deploy:testnet": "(truffle.cmd migrate -f 2 --network rinkeby || truffle migrate -f 2 --network rinkeby) && npm run copy-contracts-build",
"ganache": "ganache-cli -p 8545 &"
},
"author": "Tharun",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"cors": "^2.8.5",
"expect": "^23.6.0",
"mocha": "^5.2.0",
"json-loader": "^0.5.4",
"supertest": "^3.3.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1"
},
"dependencies": {
"babel-loader": "8.0.4",
"body-parser": "^1.18.2",
"chalk": "^2.4.1",
"copyfiles": "^2.4.1",
"css-loader": "^0.26.1",
"dotenv": "^6.2.0",
"express": "^4.16.2",
"jquery": "^3.5.0",
"mongoose": "^5.4.0",
"nodemon": "^1.14.12",
"scrypt": "github:barrysteyn/node-scrypt#fb60a8d3c158fe115a624b5ffa7480f3a24b03fb",
"solc": "^0.4.25",
"style-loader": "^0.13.1",
"truffle-contract": "^1.1.11",
"truffle-hdwallet-provider": "0.0.6",
"uuid": "^8.3.2",
"web3": "^1.0.0-beta.37"
}
}