This repository was archived by the owner on Feb 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "ed-backend",
"version": "1.0.0",
"description": "",
"main": "src/app.mjs",
"type": "module",
"scripts": {
"start": "node --require dotenv/config bin/www.mjs",
"start-debug": "DEBUG=ed-commodities-api node --require dotenv/config bin/www.mjs",
"lint": "eslint --ignore-path .gitignore .",
"fix-lint": "eslint --fix --ignore-path .gitignore .",
"test": "mocha ./tests/* --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BANTYC/ed-backend.git"
},
"author": "Roman Daneliya <rdaneliya@yandex.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BANTYC/ed-backend/issues"
},
"homepage": "https://github.com/BANTYC/ed-backend#readme",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^6.2.7",
"@graphql-tools/load": "^6.2.7",
"conf": "^10.0.1",
"cookie-parser": "~1.4.4",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"express": "^4.16.4",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"graphql-tools": "^7.0.4",
"mongoose": "^6.2.2",
"morgan": "^1.9.1",
"mquery": "^3.2.4",
"node-fetch": "^2.6.7",
"node-schedule": "^2.0.0",
"zeromq": "^5.2.0"
},
"devDependencies": {
"eslint": "^8.9.0"
}
}