-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 950 Bytes
/
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
{
"name": "@superalgos/cockpit-api",
"version": "0.0.1",
"description": "Superalgos cockpit backend API",
"author": "Apache-2.0",
"license": "Superalgos, ltd.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Superalgos/CockpitServerModule.git"
},
"scripts": {
"start": "nodemon --exec babel-node --presets env,stage-2 src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"standard": {
"ignore": [
"/src/errors/index.js"
]
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"nodemon": "^1.19.1"
},
"dependencies": {
"apollo-server-express": "^2.1.0",
"dotenv": "^8.0.0",
"esm": "^3.2.25",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-type-json": "^0.2.1",
"mongoose": "5.3.4"
}
}