-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "effector-openapi-preset",
"version": "0.3.2",
"description": "Generate API layer from Swagger by openapi",
"main": "index.js",
"scripts": {
"test": "jest",
"prepublishOnly": "yarn test",
"example": "openapi --config ./example/.openapi.config.js && yarn prettier --write ./example && yarn eslint --fix ./example"
},
"publishConfig": {
"access": "public"
},
"files": ["index.js", "lib", "src", "!*.test.js"],
"repository": {
"type": "git",
"url": "git+https://github.com/openapi/effector-preset.git"
},
"keywords": ["swagger", "js", "openapi", "preset"],
"author": "Sergey Sova <[email protected]> (https://sova.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/openapi/effector-preset/issues"
},
"homepage": "https://github.com/openapi/effector-preset#readme",
"devDependencies": {
"@eslint-kit/eslint-config-base": "^2.1.2",
"@eslint-kit/eslint-config-node": "^2.0.0",
"@eslint-kit/eslint-config-prettier": "^2.0.0",
"@eslint-kit/eslint-config-typescript": "^3.1.2",
"@types/jest": "^26.0.14",
"@typescript-eslint/parser": "^4.4.0",
"babel-eslint": "^10.1.0",
"effector": "^21.5.0",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-snapshot": "^26.6.2",
"lint-staged": "^10.4.0",
"openapi": "^1.0.0",
"prettier": "^2.1.2",
"typed-contracts": "^2.3.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/generator": "^7.12.5",
"@babel/template": "^7.12.7",
"@babel/types": "^7.12.7",
"change-case": "^4.1.1"
}
}