-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 978 Bytes
/
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": "can-signin-protocol-example-web",
"private": "true",
"version": "0.1.0",
"scripts": {
"docs": "doctoc --title '**Table of content**' README.md",
"start": "EXPRESS_PORT=3002 nodemon index.js",
"test": "jest"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"can-pass-verify": "^1.7.1",
"cookie-session": "^1.3.3",
"ejs": "^2.6.1",
"eosjs": "^21.0.3",
"express": "^4.16.4",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"doctoc": "^1.4.0",
"husky": "^4.3.0",
"jest": "^26.6.0",
"lint-staged": "^10.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css}": "prettier --write",
"*.md": [
"doctoc --title '**Table of content**'"
]
}
}