-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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": "gatsby-plugin-amplify-redirects",
"version": "1.0.0",
"description": "Gatsby plugin for generating redirect-amplify.json",
"main": "dist/gatsby-node.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"build": "tsc",
"clean": "rm -rf node_modules",
"lint": "run-p lint:*",
"lint:js": "run-p lint:js:*",
"lint:js:eslint": "eslint --ext .ts,.tsx,.js,.jsx src",
"lint:js:tsc": "tsc --noEmit --skipLibCheck",
"lint-fix": "run-p lint-fix:*",
"lint-fix:js": "npm run lint:js:eslint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chefclub/gatsby-plugin-amplify-redirects.git"
},
"keywords": [
"redirects",
"amplify",
"chefclub",
"gatsby",
"gatsby-plugin"
],
"author": "ChefClub",
"license": "ISC",
"bugs": {
"url": "https://github.com/Chefclub/gatsby-plugin-amplify-redirects/issues"
},
"homepage": "https://github.com/Chefclub/gatsby-plugin-amplify-redirects#readme",
"peerDependencies": {
"gatsby": "^2.0.0 ||^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typescript": "^4.4.4"
},
"files": [
"dist/**/*",
"gatsby-node.js"
]
}