-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "gql-currency-conversion",
"version": "1.0.0",
"description": "GraphQL service for currency conversion",
"main": "src/index.js",
"author": "Convenia",
"private": true,
"type": "module",
"scripts": {
"serve": "node --es-module-specifier-resolution=node src/index.js",
"upgrade-fallback:currency-conversion": "node --es-module-specifier-resolution=node src/services/commands/fallback/CurrencyConversion.js",
"test:integration": "mocha --es-module-specifier-resolution=node --loader=testdouble --timeout 60000 --require ./test/bootstrap.js ./test/specs/**/*.spec.js"
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"axios": "0.21.0",
"currency-symbol-map": "^5.1.0",
"fastify": "4.1.0",
"graphiql": "^1.9.13",
"graphql": "^16.5.0",
"mercurius": "10.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"mocha": "^10.0.0",
"nock": "^13.2.7",
"supertest": "^6.2.3",
"testdouble": "^3.16.6"
},
"engines": {
"node": "^16.15.0"
},
"imports": {
"#src/*": "./src/*",
"#graphql": "./src/graphql",
"#content/*": "./src/content/*",
"#graphql/*": "./src/graphql/*",
"#services/*": "./src/services/*",
"#fallback/*": "./fallback/*",
"#test:modules/*": "./test/modules/*",
"#test:graphql/*": "./test/graphql/*"
}
}