-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "idchain-ca",
"version": "0.0.1",
"private": true,
"description": "Cloud Agent Implementation for IdentityChain Project",
"keywords": [],
"author": "SNET - TU Berlin",
"license": "Apache-2.0",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "DEBUG=* nodemon --inspect -r pino-debug app.js | pino",
"test": "NODE_ENV=testing mocha "
},
"dependencies": {
"ajv": "^6.5.1",
"bcrypt": "^3.0.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-pino-logger": "^3.0.1",
"firebase-admin": "^5.13.1",
"indy-sdk": "^1.6.1",
"level": "^4.0.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"pino": "^4.17.3",
"superagent": "^3.8.3",
"swagger-ui-express": "^3.0.9",
"uuid": "^3.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"pino-debug": "^1.1.1",
"supertest": "^3.1.0"
}
}