-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 999 Bytes
/
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
{
"name": "lottery",
"version": "1.0.0",
"description": "school lottery demo",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cipherzzz/school_lottery.git"
},
"author": "cipherZ",
"license": "ISC",
"homepage": "https://github.com/cipherzzz/school_lottery#readme",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"chain:start": "./eos/scripts/start_blockchain.sh",
"chain:reset": "./eos/scripts/resetchain.sh",
"wallet:unlock": "./eos/scripts/unlock.sh",
"contract:build": "rm ./src/contracts/Lottery/Lottery.abi && cmake . && make",
"contract:test": "ctest -V -R"
},
"dependencies": {
"eosjs": "^16.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.7",
"react-scripts": "^1.1.4",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"webpack": "^3.11.0"
},
"devDependencies": {}
}