forked from Blockternship/dPanc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "dpanc",
"version": "1.0.0",
"description": "Self Health Management dApp for Diabetes",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Blockternship/dPanc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Blockternship/dPanc/issues"
},
"homepage": "https://github.com/Blockternship/dPanc#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"ipfs-api": "^24.0.2",
"moment": "^2.22.2",
"multer": "^1.4.0",
"nodemon": "^1.18.4",
"orbit-db": "^0.19.9",
"pre-commit": "^1.2.2",
"qrcode-terminal": "^0.12.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-highcharts": "^16.0.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.82.3",
"uport-connect": "^0.7.8",
"web3": "^1.0.0-beta.36"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start:server": "nodemon backend/server.js",
"start:client": "yarn start",
"start:dev": "concurrently --kill-others-on-fail \"yarn start:server\" \"yarn start:client\"",
"test:contracts": "cd contracts && yarn test:contracts"
},
"pre-commit": [
"test",
"test:contracts"
],
"devDependencies": {
"concurrently": "^4.0.1"
},
"proxy": "http://localhost:3001/"
}