-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "amplify-openapi",
"version": "0.0.3",
"description": "Plugins for OpenAPI tooling with AWS Amplify",
"main": "index.js",
"private": true,
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"watch-build": "lerna run watch-build",
"link": "lerna run link",
"prettier": "prettier --write packages/*/src/**",
"prepare": "lerna run build",
"publish": "lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anttiviljami/amplify-openapi.git"
},
"keywords": [],
"author": "Viljami Kuosmanen <viljami@viljami.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anttiviljami/amplify-openapi/issues"
},
"homepage": "https://github.com/anttiviljami/amplify-openapi#readme",
"dependencies": {
"amplify-openapi-client": "*",
"amplify-category-openapi": "*",
"amplify-nodejs-function-template-openapi-provider": "*"
},
"files": [
"package.json",
"package-lock.json"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^3.22.1",
"@types/jest": "^26.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}