-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "sparrowql-repo",
"private": true,
"scripts": {
"coverage": "jest --coverage",
"lint": "npm run lint:code && npm run lint:types && cd playground && npm run lint",
"lint:code": "eslint --cache --cache-location node_modules/.cache/eslint --cache-strategy content --ext js,ts .",
"lint:types": "tsc --build tsconfig.global.json",
"build": "tsc --build tsconfig.build.json",
"postinstall": "lerna bootstrap --hoist && npm run build",
"pretest": "npm run lint",
"test": "jest"
},
"dependencies": {
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/uuid": "8.3.4",
"eslint-config-vazco": "6.2.0",
"graphql": "^16.0.0 || ^15.0.0",
"jest": "27.5.1",
"lerna": "6.0.1",
"mongodb": "4.4.1",
"ts-jest": "27.1.3",
"typescript": "4.6.2",
"uuid": "8.3.2"
},
"jest": {
"coverageReporters": [
"html",
"lcovonly",
"text-summary"
],
"globalSetup": "./__mongo__/setup.ts",
"globalTeardown": "./__mongo__/teardown.ts",
"moduleNameMapper": {
"^sparrowql([^/]*)(.*)$": "<rootDir>/packages/sparrowql$1/lib$2"
},
"preset": "ts-jest",
"testEnvironment": "./__mongo__/environment.ts"
},
"engines": {
"npm": ">=7.0.0"
}
}