-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 913 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 913 Bytes
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
{
"name": "msw-openapi",
"version": "1.0.0",
"description": "Mock Service Worker integration with OpenAPI specifications",
"main": "src/server.ts",
"author": "Jack Chapple <jchapple@gmail.com>",
"license": "MIT",
"scripts": {
"prettier-format": "prettier --config .prettierrc.json 'src/**/*.ts' --write",
"prepare": "husky install",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
"@types/node-fetch": "^2.6.1",
"husky": "^7.0.0",
"jest": "^27.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"msw": "^0.39.2",
"node-fetch": "^2.6.7",
"openapi-typescript": "^5.2.0",
"prettier": "2.6.2",
"pretty-quick": "^3.1.3",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}