This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
forked from mjhea0/passport-local-express4
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
{
"name": "hevote",
"description": "Electronic Voting System using Ethereum & IPFS & HElib",
"keywords": [
"hevote",
"ethreum",
"ipfs",
"helib",
"voting"
],
"version": "2.1.0",
"private": false,
"scripts": {
"make-election": "node scripts/make.new.election.js",
"compile": "truffle compile",
"migration": "truffle migration --reset",
"windows-compile": "truffle.cmd compile",
"windows-migration": "truffle.cmd migration --reset",
"start": "./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/nodemon server.js",
"debug": "./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/nodemon --debug server.js",
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/HanBae/HeVote"
},
"author": "SsangWoo <[email protected]>",
"license": "MIT",
"dependencies": {
"agenda": "^2.0.2",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"compression": "^1.7.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"cross-env": "^5.2.0",
"csurf": "^1.9.0",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"ipfs-api": "^24.0.1",
"method-override": "^3.0.0",
"mongoose": "^5.1.2",
"morgan": "^1.9.0",
"npm": "^6.4.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.0",
"pug": "^2.0.3",
"readline": "^1.3.0",
"rimraf": "^2.6.2",
"serve-favicon": "^2.5.0",
"should": "^13.2.1",
"web3": "^1.0.0-beta.34",
"winston": "^3.1.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"openzeppelin-solidity": "^1.9.0",
"truffle-contract": "^3.0.5",
"truffle-hdwallet-provider": "^0.0.5"
}
}