-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.23 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
{
"name": "prism-service",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GolosChain/prism-service.git"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"semi": true,
"trailingComma": "es5",
"printWidth": 100,
"overrides": [
{
"files": [
"*.json",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
},
"author": "golos.io",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/GolosChain/prism-service/issues"
},
"homepage": "https://github.com/GolosChain/prism-service#readme",
"dependencies": {
"bodybuilder": "^2.2.17",
"cyberway-core-service": "3.52.6-1",
"cyberwayjs": "^20.0.0-beta7",
"elasticsearch": "^15.5.0",
"escape-string-regexp": "^2.0.0",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"mongodb": "^3.2.7",
"node-fetch": "^2.6.0",
"node-nats-streaming": "^0.2.4",
"pluralize": "^7.0.0",
"text-encoding": "^0.7.0",
"uuid": "^3.3.2",
"valid-url": "^1.0.9"
},
"devDependencies": {
"prettier": "^1.18.2"
}
}