-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rover",
"version": "0.0.1",
"description": "Testing/Interaction for your Smart Contract made simple.",
"repository": {
"type": "git",
"url": "https://github.com/ravidsrk/Rover.git"
},
"author": "Ravindra Kumar",
"license": "MIT",
"scripts": {
"postinstall": "npm rebuild node-sass",
"start": "nodemon app.js",
"test": "nyc mocha --timeout=3000 --exit",
"lint": "eslint \"**/*.js\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.5.0",
"@ladjs/bootstrap-social": "^7.0.2",
"@octokit/rest": "^16.1.0",
"abi-decoder": "^1.2.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"clockwork": "^0.1.4",
"compression": "^1.7.3",
"connect-mongo": "^2.0.2",
"dotenv": "^6.1.0",
"errorhandler": "^1.5.0",
"ethereum-event-logs": "^1.3.0",
"etherscan-api": "^10.0.0",
"express": "^4.16.4",
"express-flash": "^0.0.2",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"forest-express-mongoose": "^2.15.0",
"jquery": "^3.3.1",
"jsonminify": "^0.4.1",
"lob": "^6.0.1",
"lodash": "^4.17.11",
"lusca": "^1.6.1",
"mdbootstrap": "^4.5.15",
"moment": "^2.22.2",
"mongoose": "^5.3.14",
"morgan": "^1.9.1",
"node-sass": "^4.10.0",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^4.7.0",
"nodemon": "^1.18.7",
"npm-check-updates": "^2.15.0",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-openid": "^0.4.0",
"popper.js": "^1.14.5",
"pug": "^2.0.3",
"request": "^2.88.0",
"rollbar": "^2.5.1",
"typedarray-to-buffer": "^3.1.5",
"uuid": "^3.3.2",
"validator": "^10.9.0",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"sinon-mongoose": "^2.2.1",
"supertest": "^3.3.0"
},
"engines": {
"node": ">=8.11.3",
"npm": ">=5.6.0"
}
}