-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "idchain-agent",
"version": "1.0.0",
"private": true,
"description": "REST API Agent Implementation for the 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 --exit",
"pretty": "prettier --write \"*.{js,yml,yaml,json,md}\"",
"precommit": "pretty-quick --staged"
},
"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",
"indy-sdk": "1.8.1",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.1.5",
"mustache": "^3.0.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pino": "^4.17.3",
"superagent": "^3.8.3",
"swagger-ui-express": "^3.0.9",
"uuid": "^3.2.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"pino-debug": "^1.2.0",
"prettier": "^1.14.0",
"pretty-quick": "^1.6.0",
"supertest": "^3.1.0"
}
}