-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.34 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.34 KB
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
86
87
88
89
90
{
"name": "qualichain-consortium-weball",
"author": "Rafael Belchior",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/QualiChain/consortium-web-app"
},
"homepage": "",
"keywords": [],
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "16.3.0",
"npm": "7.19.1"
},
"scripts": {
"test": "mocha --reporter dot --timeout 10000 \"server/tests/*.spec.js\"",
"test-routes": "mocha --reporter dot --timeout 10000 \"server/tests/*-routes.spec.js\"",
"first-setup": "npm install && npm run heroku-postbuild",
"start": "nodemon server.js",
"build": "",
"generate-api-docs": "apidoc -i server -o docs",
"generate-js-docs": "jsdoc server",
"heroku-prebuild": "rm package-lock.json && rm -rf node_modules && rm -rf ~/.node-gyp",
"heroku-postbuild": "cd angular-src && npm install"
},
"nodemonConfig": {
"ignore": [
"server/files/*",
"*.html",
"*.json"
]
},
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19",
"canvas": "^2.6.0",
"cids": "^1.1.8",
"client-oauth2": "^4.3.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^3.1.0",
"dotenv": "^6.2.0",
"ethereumjs-tx": "^2.1.2",
"express": "^4.17",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"hashmap": "^2.3.0",
"helmet": "^3.21.2",
"hoek": "^5.0.4",
"htmlparser2": "^3.9.2",
"ibm-watson": "^4.1.1",
"ipfs": "0.50.1",
"jsdom": "^15.2.1",
"jsonwebtoken": "^8.3.0",
"jwt-simple": "^0.5.6",
"keycloak-connect": "^14.0.0",
"marked": "^0.7.0",
"moment": "^2.22.2",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"natural": "^0.6.3",
"node-cache": "^4.2.0",
"node-gyp": "7.1.0",
"node-schedule": "^1.3.0",
"nodemailer": "^6.6.2",
"parse-rss": "^1.0.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pem-jwk": "^2.0.0",
"secp256k1": "^4.0.2",
"stopword": "^0.1.10",
"unirest": "^0.6.0",
"web3": "^1.2.11",
"winston": "^2.4.2",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"chai": "^4.1.2",
"json-stable-stringify": "^1.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.14.12",
"nyc": "^14.1.1",
"sinon": "^5.0.7"
}
}