-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "merkle-tree",
"version": "0.0.0-semantically-released",
"description": "construct and store a merkle tree from its leaves",
"private": true,
"main": "index.js",
"scripts": {
"start": "babel-node ./src/index.js",
"test": "truffle test"
},
"author": "iAmMichaelConnor",
"license": "CC0-1.0",
"contributors": [
"Michael Connor <[email protected]>"
],
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"express-promise-router": "^3.0.3",
"pg": "^7.12.1",
"web3": "1.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit $1"
}
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/node": "^7.6.3",
"@babel/register": "^7.6.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"nodemon": "^1.19.4",
"eslint": "^5.16.0",
"eslint-config-codfish": "^2.5.0",
"prettier": "^1.18.2",
"husky": "^4.2.5",
"lint-staged": "^8.2.1"
}
}