forked from KILTprotocol/kilt-did-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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": "kilt-did-driver",
"version": "2.0.0",
"main": "src/index.js",
"repository": "https://github.com/KILTprotocol/kilt-did-driver.git",
"author": "KILT <[email protected]>",
"license": "BSD-4-Clause",
"private": true,
"scripts": {
"lint": "eslint 'src/**'",
"start": "node src/index.js",
"start:testnet": "env-cmd -f .env.testnet node src/index.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@kiltprotocol/core": "0.26.0",
"@kiltprotocol/did": "0.26.0",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"env-cmd": "^10.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^30.1.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^4.2.3",
"npm-registry-client": "^8.6.0",
"prettier": "^2.0.5"
}
}