-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "backend",
"version": "0.0.0",
"description": "Backend for mylims project",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [],
"author": "maasencioh",
"license": "MIT",
"files": [
"src",
"lib"
],
"scripts": {
"clean": "rimraf lib",
"eslint": "eslint src --ext ts --cache --ignore-pattern src/generated/",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run tsc",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "npm run test-only -- --coverage",
"test-only": "jest --runInBand",
"test-watch": "jest --watch",
"test-cache": "jest --clear-cache",
"tsc": "npm run clean && npm run tsc-cjs",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"start": "npm run tsc && node ./lib/index.js",
"prestart": "npm run generate",
"generate": "graphql-codegen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mylims/backend.git"
},
"bugs": {
"url": "https://github.com/mylims/backend/issues"
},
"homepage": "https://github.com/mylims/backend#readme",
"jest": {
"preset": "./jest.config.js",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src/directives.ts"
]
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"endOfLine": "auto"
},
"dependencies": {
"@graphql-codegen/typescript-mongodb": "1.15.3",
"apollo-server-fastify": "~2.14.4",
"axios": "~0.19.2",
"fastify": "~2.15.1",
"graphql": "~15.1.0",
"graphql-tools": "~6.0.10",
"graphql-type-json": "~0.3.2",
"jsonwebtoken": "~8.5.1",
"lodash.merge": "~4.6.2",
"mongodb": "~3.5.9"
},
"devDependencies": {
"@graphql-codegen/cli": "1.15.3",
"@graphql-codegen/typescript": "1.15.3",
"@graphql-codegen/typescript-resolvers": "1.15.3",
"@shelf/jest-mongodb": "~1.1.5",
"@types/graphql-type-json": "~0.3.2",
"@types/jest": "~26.0.0",
"@types/jsonwebtoken": "~8.5.0",
"@types/lodash.merge": "~4.6.6",
"@types/mongodb": "~3.5.20",
"@types/node": "~14.0.27",
"@types/ws": "~7.2.5",
"@typescript-eslint/eslint-plugin": "~3.3.0",
"@typescript-eslint/parser": "~3.3.0",
"apollo-server-testing": "~2.14.4",
"eslint": "~7.2.0",
"eslint-config-cheminfo": "~4.0.0",
"eslint-config-cheminfo-typescript": "~6.0.0",
"eslint-plugin-import": "~2.21.2",
"eslint-plugin-jest": "~23.13.2",
"eslint-plugin-prettier": "~3.1.4",
"jest": "~26.0.1",
"prettier": "2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.1.0",
"typescript": "~3.9.5"
}
}