-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.29 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "euri-test-api",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"start": "node ./src/server.js",
"start:watch": "nodemon ./src/server.js",
"test": "jest --watch --runInBand",
"deploy": "now --public",
"format": "prettier --write '**/*.{js,json}'"
},
"private": true,
"dependencies": {
"apollo-server": "^2.2.6",
"apollo-server-express": "^2.2.6",
"body-parser": "^1.17.1",
"cors": "^2.8.5",
"expect-more-jest": "^2.3.0",
"express": "^4.16.4",
"express-asyncify": "^1.0.0",
"faker": "^4.1.0",
"graphql": "^14.0.2",
"http-status-codes": "^1.3.0",
"intl": "^1.2.5",
"jest": "^23.6.0",
"morgan": "^1.9.1",
"node-gyp": "^5.0.3",
"nodemon": "^1.18.7",
"schema-inspector": "^1.6.8",
"showdown": "^1.9.0",
"sort-on": "^3.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"jest-matcher-utils": "^23.6.0",
"jest-watch-typeahead": "^0.2.0",
"prettier": "^1.5.3",
"supertest": "^3.3.0"
},
"jest": {
"verbose": false,
"setupTestFrameworkScriptFile": "<rootDir>/test/jest.setup.js",
"testEnvironment": "node",
"testMatch": [
"**/?(*.)(test).js?(x)"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}