-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.84 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.84 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "echodb",
"version": "0.9.0",
"repository": {
"type": "git",
"url": "git@github.com:echoprotocol/echodb.git"
},
"homepage": "https://github.com/echoprotocol/echodb",
"license": "MIT",
"author": {
"name": "PixelPlex, Inc.",
"email": "info@pixelplex.io",
"url": "https://pixelplex.io"
},
"bugs": {
"url": "https://github.com/echoprotocol/echodb/issues"
},
"private": true,
"scripts": {
"preinstall": "npx npm-force-resolutions",
"build": "rm -rf ./dist && npx tsc",
"start": "npm run start:api",
"start:api": "npm run build && cd dist && cross-env MODULE=api NODE_CONFIG_DIR=../config node server.js",
"start:parser": "npm run build && cd dist && cross-env MODULE=parser NODE_CONFIG_DIR=../config node server.js",
"dev:api": "nodemon -e ts -w ./src -x npm run start:api",
"lint": "npm run lint:src && npm run lint:typing && npm run lint:types",
"lint:src": "npx tslint -p tsconfig.json -c tslint.json",
"lint:typing": "npx tslint -c tslint.json ./typing/**/*.d.ts",
"lint:types": "npx tslint -c tslint.json ./src/types/**/*.d.ts",
"lint:fix": "npx tslint --fix -p ./tsconfig.json",
"audit": "node_modules/audit-ci/bin/audit-ci --config audit-ci.json",
"test": "echo \"we need tests!\""
},
"dependencies": {
"apollo-server-express": "2.14.1",
"awilix": "^4.2.0",
"bignumber.js": "^8.1.1",
"body-parser": "^1.18.3",
"config": "^3.0.1",
"connect-mongo": "^3.1.2",
"cors": "^2.8.5",
"echojs-contract": "git+https://gitlab+deploy-token-9:f17aTdMVy2-EVxdmQpUb@gitlab.pixelplex.by/645.echo/echojs/echojs-contract.git#1.0.0",
"echojs-lib": "^1.13.6",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.1.1",
"graphql-type-json": "^0.2.2",
"joi": "^14.3.1",
"log4js": "^6.6.1",
"mongoose": "5.13.9",
"npm-force-resolutions": "0.0.10",
"passport": "^0.4.0",
"raven": "^2.6.4",
"redis": "^3.1.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.6"
},
"devDependencies": {
"@babel/runtime": "^7.3.1",
"@types/connect-mongo": "0.0.40",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/express-graphql": "^0.6.2",
"@types/express-session": "^1.15.11",
"@types/graphql": "^14.0.7",
"@types/graphql-type-json": "^0.1.3",
"@types/joi": "^14.3.1",
"@types/mongodb": "^3.1.17",
"@types/mongoose": "^5.3.20",
"@types/node": "^10.12.21",
"@types/passport": "^1.0.0",
"@types/raven": "^2.5.2",
"@types/redis": "^2.8.10",
"audit-ci": "^1.3.1",
"chai-http": "^4.2.1",
"cross-env": "^5.1.4",
"express-session": "^1.15.6",
"nodemon": "^2.0.19",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "3.4.1"
},
"resolutions": {
"@types/http-assert": "1.5.1",
"ansi-regex": "3.0.1",
"apollo-server-core": "2.17.0",
"glob-parent": "5.1.2",
"ini": "1.3.8",
"minimist": "1.2.6",
"pathval": "1.1.1",
"tar": "4.4.18"
}
}