-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
97 lines (97 loc) · 2.86 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
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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "rick-morty-api-site",
"description": "Rick and Morty API site",
"version": "1.0.0",
"author": "Axel Fuhrmann",
"engines": {
"node": ">=16"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"babel-plugin-styled-components": "^1.12.0",
"dotenv": "^8.2.0",
"gatsby": "^4.15.2",
"gatsby-plugin-catch-links": "^4.15.0",
"gatsby-plugin-manifest": "^4.15.1",
"gatsby-plugin-mdx": "^3.15.2",
"gatsby-plugin-netlify": "^5.0.0",
"gatsby-plugin-no-sourcemaps": "^4.15.0",
"gatsby-plugin-react-helmet": "^5.15.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sitemap": "^5.15.1",
"gatsby-plugin-styled-components": "^5.15.0",
"gatsby-plugin-typography": "^4.15.0",
"gatsby-remark-autolink-headers": "^5.15.1",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-prismjs": "^6.15.0",
"gatsby-source-filesystem": "^4.15.0",
"gatsby-source-graphql": "^4.15.0",
"prismjs": "^1.28.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.4.0",
"react-typography": "^0.16.20",
"styled-components": "^5.3.5",
"typography": "^0.16.21",
"typography-theme-github": "^0.16.19"
},
"devDependencies": {
"@testing-library/cypress": "^7.0.2",
"cypress": "^4.12.1",
"eslint": "^7.15.0",
"eslint-config-afuh": "^0.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"start-server-and-test": "^1.11.6",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"keywords": [
"gatsby",
"api",
"rick and morty"
],
"license": "BSD-3-Clause",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"dev": "gatsby develop -H 0.0.0.0",
"serve": "gatsby serve -H 0.0.0.0",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "npm run build && start-server-and-test serve :9000 cy:run",
"lint": "stylelint './src/**/*.js' && eslint src/."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"stylelint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/afuh/rick-and-morty-api-site.git"
},
"bugs": {
"url": "https://github.com/afuh/rick-and-morty-api-site/issues"
},
"homepage": "https://github.com/afuh/rick-and-morty-api-site#readme"
}