forked from eliasreis54/backstage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (45 loc) · 1.08 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
{
"name": "gui-helper",
"version": "1.0.0",
"description": "This repository is to get together all services can help GUI",
"main": "index.js",
"scripts": {
"test": "jest --coverage && codecov",
"dev": "nodemon src/index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dojot/backstage.git"
},
"author": [
"Elias Reis <efreis@cpqd.com.br>",
"Mariane P. @mprevide"
],
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"express-validator": "^5.3.0",
"graphql": "^14.1.1",
"json-server": "^0.14.2",
"lodash": "^4.17.11",
"pg": "^7.7.1",
"rimraf": "^2.6.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"graphql-tools": "^4.0.3"
}
}