-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.51 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
54
55
56
57
58
59
60
{
"name": "whisper-chain-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"generate-openapi-docs": "node ./documentation/openapi/generate.js",
"start-dev": "source ./set_env_vars.sh ; npm start",
"pre-commit": "lint-staged"
},
"dependencies": {
"@moxiedotxyz/base": "1.0.0",
"aws-sdk": "2.849.0",
"commander": "7.1.0",
"continuation-local-storage": "3.2.1",
"cookie-parser": "1.4.5",
"express": "4.17.1",
"helmet": "4.4.1",
"html-entities": "2.1.0",
"js-base64": "3.7.2",
"morgan": "1.10.0",
"mysql": "2.18.1",
"node-telegram-bot-api": "^0.61.0",
"sanitize-html": "2.3.2",
"uuid": "8.3.2",
"serverless-http": "3.2.0",
"stability-client": "1.9.0",
"swagger-jsdoc": "6.2.1",
"swagger-ui-express": "4.3.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"ethers": "^5.7.2",
"gql": "^1.1.2",
"graphql-tag": "^2.12.6",
"ipfs-http-client": "^59.0.0",
"uuidv4": "^6.2.13",
"apollo-link-context": "^1.0.20",
"graphql": "^15.8.0",
"proper-lockfile": "4.1.2"
},
"devDependencies": {
"eslint": "7.20.0",
"lint-staged": "10.5.4",
"parse-function": "^5.6.10",
"pre-commit": "1.2.2",
"prettier": "1.13.7"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}