-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 961 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
38
39
40
41
{
"name": "koa-apis-over-graphql",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"start": "babel-node index.js",
"test": "env NODEENV=test jest --runInBand ",
"watch": "nodemon --exec npm start",
"watch-test": "nodemon --exec npm run test",
"pretest": "env NODEENV=test babel-node src/tests/pretest/pretestScript.js"
},
"license": "MIT",
"dependencies": {
"graphql": "^14.6.0",
"graphql-request": "^1.8.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^8.0.6",
"supertest": "^4.0.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/preset-env": "7.3.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/node_modules"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
}
}