-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 799 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 799 Bytes
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
{
"name": "dock-api",
"version": "1.0.0",
"description": "Dock Issuer API",
"main": "src/index.js",
"scripts": {
"all": "for FILE in ./workflows/*.js; do node $FILE; done",
"anchors": "node ./workflows/anchorsFlow.js",
"dids": "node ./workflows/didFlow.js",
"schemas": "node ./workflows/schemaFlow.js",
"registries": "node ./workflows/registryFlow.js",
"credentials": "node ./workflows/credentialsFlow.js",
"presentations": "node ./workflows/presentationsFlow.js"
},
"dependencies": {
"axios": "^0.32.0",
"clear": "^0.1.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^24.5.2",
"jest": "^27.2.4"
}
}