-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@folio/mod-graphql",
"type": "module",
"version": "1.15.1",
"description": "GraphQL services for Okapi",
"repository": "folio-org/mod-graphql",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"main": "main.js",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint -f unix create-schemas/create-schemas.js main.js src src/autogen/raml2graphql tests/*.js tests/testlib/*.js",
"start": "node main.js",
"dev": "nodemon main.js",
"test": "./tests/setup-for-tests.sh && ./build/setup-for-build.sh && env NODE_OPTIONS=--no-warnings mocha --exit tests/[02]*",
"testall": "./tests/setup-for-tests.sh && ./build/setup-for-build.sh && env NODE_OPTIONS=--no-warnings mocha --exit tests",
"test1": "./tests/setup-for-tests.sh && ./build/setup-for-build.sh && env NODE_OPTIONS=--no-warnings mocha --exit tests/20*",
"clean": "rm -rf api.yml tests/schemas-for-tests build/schemas-for-build",
"regen": "node src/autogen/test/run-tests.js --regenerate ./src/autogen/test",
"api": "rm -f api.yml; wget https://raw.githubusercontent.com/folio-org/folio-org.github.io/master/_data/api.yml"
},
"dependencies": {
"@apollo/server": "^4.11.2",
"@folio/stripes-logger": "^0.0.2",
"cors": "^2.8.5",
"express": "^4.21.1",
"graphql": "^16.9.0",
"js-yaml": "^4.2.0",
"lodash": "^4.18.1",
"node-fetch": "^2.6.7",
"node-getopt": "^0.3.2",
"query-string": "^7.1.2",
"raml-1-parser": "1.1.47"
},
"devDependencies": {
"@folio/eslint-config-stripes": "^8.0.1",
"babel-eslint": "^10.1.0",
"babel-register": "^6.26.0",
"chai": "^5.0.0",
"chai-http": "^5.0.0",
"crypto": "^1.0.1",
"dotenv": "^4.0.0",
"eslint": "^7.2.0",
"http": "*",
"mocha": "^9.0.0",
"nodemon": "^2.0.5",
"path": "^0.12.7",
"url": "^0.11.0",
"yakbak": "^4.0.0"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"braces": "^3.0.2",
"date-and-time": "^0.14.2",
"ejs": "^3.1.7",
"glob-parent": "^5.1.2",
"json-ptr": "^3.0.0",
"minimist": "^1.2.5",
"underscore": "^1.13.1",
"validator": "^13.15.22",
"@xmldom/xmldom": "^0.8.1"
}
}