This repository was archived by the owner on Apr 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.5 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "msw-graphql-schema",
"version": "1.0.0",
"description": "Resolver level GraphQL schema mocking for MSW.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\"",
"lint": "eslint '*/**/*.ts'",
"lint:fix": "eslint --fix '*/**/*.ts'",
"test-api": "ts-node test/testApi.ts",
"test": "jest --collectCoverage --collectCoverageFrom=\"src/**/*.ts\"",
"posttest": "yarn format:check && yarn lint",
"prepublishOnly": "tsc"
},
"author": "Philipp Melab",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^19.0.1",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/express": "^4.17.6",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.21.0",
"apollo-boost": "^0.4.9",
"apollo-client": "^2.6.10",
"apollo-server-express": "^3.6.2",
"babel-jest": "^29.0.0",
"cross-fetch": "^4.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"husky": "^9.0.6",
"jest": "^29.3.1",
"prettier": "^3.0.0",
"semantic-release": "^23.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^9.0.0",
"typescript": "^5.0.2",
"wait-on": "^7.0.1"
},
"release": {
"branches": [
"development"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@types/lodash": "^4.14.157",
"apollo-server": "^3.6.3",
"graphql": "^15.3.0",
"lodash": "^4.17.15",
"msw": "^2.0.0"
}
}