-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "vote-chain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server",
"server": "nodemon server",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"ganache": "node_modules/.bin/ganache-cli",
"deploy": "node ./blockchian/deployer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Icones-Plus/Vote-chain.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Icones-Plus/Vote-chain/issues"
},
"homepage": "https://github.com/Icones-Plus/Vote-chain#readme",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chart.js": "^2.9.3",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"ganache-cli": "^6.10.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongoose": "^5.9.27",
"mongoose-type-url": "^2.0.0",
"react-chartjs-2": "^2.10.0",
"react-webcam": "^5.2.0",
"reactjs-popup": "^1.5.0",
"solc": "^0.6.4",
"telesignsdk": "^2.2.1",
"web3": "^1.2.6"
},
"devDependencies": {
"prettier": "^2.0.5"
}
}