-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "nse-hackathon",
"version": "1.0.0",
"description": "Algorythmix submission for NSE Future Tech 2018 hackathon",
"author": "Varun Agarwal <varunagarwal315@gmail.com>",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"nodemonConfig": {
"ignore": [
"chaincode/*",
"test/*"
],
"delay": "2500"
},
"engines": {
"node": ">=8.9.0",
"npm": ">=5.2.6"
},
"license": "ISC",
"contributors": [
"Varun Agarwal <varun@algorythmix.in>",
"Utkarsh Verma <utkarsh@algorythmix.in>"
],
"dependencies": {
"app-root-path": "^2.1.0",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"composer-client": "^0.19.11",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"gzip": "^0.1.0",
"helmet": "^3.12.1",
"joi": "^13.4.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.1.7",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"nodemon": "^1.17.5"
},
"devDependencies": {
"browserfs": "^1.4.3",
"chai": "^4.1.2",
"composer-admin": "^0.19.11",
"composer-connector-embedded": "^0.19.11",
"eslint": "^5.0.1",
"eslint-config-netflix": "^2.0.0",
"license-check": "^1.1.5",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2"
}
}