-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "sa-api",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublish": "rollup -c",
"test": "run-s eslint",
"start": "run-s prepublish runServer",
"runServer": "node lib/index.js"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --use-tabs --arrow-parens always --single-quote --write",
"git add"
]
},
"keywords": [],
"author": "ermahechap",
"license": "MIT",
"dependencies": {
"@koa/cors": "^2.2.1",
"apollo-server-koa": "^1.3.2",
"graphql": "^0.11.7",
"graphql-tools": "^2.18.0",
"graphql-type-json": "^0.1.4",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.1.0",
"koa-router": "^7.3.0",
"lodash.merge": "^4.6.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-cheminfo": "^1.14.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-no-only-tests": "^2.0.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"npm-run-all": "^4.1.2",
"prettier": "1.9.2",
"rimraf": "^2.6.2",
"rollup": "^0.50.1"
}
}