forked from goblindegook/gatsby-starter-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
164 lines (164 loc) · 4.82 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "@goblindegook/gatsby-starter-typescript",
"description": "A Gatsby starter the way I like it.",
"version": "1.0.0",
"author": "Luís Rodrigues <[email protected]>",
"dependencies": {
"@emotion/core": "^10.0.4",
"@emotion/styled": "^10.0.4",
"@mdx-js/mdx": "^1.0.20",
"@mdx-js/react": "^1.0.20",
"@pacote/react-use-outside": "^1.0.2",
"@reach/router": "^1.2.0",
"@types/lunr": "^2.1.6",
"core-js": "^3.1.4",
"emotion": "^10.0.4",
"emotion-server": "^10.0.4",
"gatsby": "^2.1.0",
"gatsby-page-utils": "^0.1.0",
"gatsby-plugin-catch-links": "^2.0.2",
"gatsby-plugin-emotion": "^4.0.4",
"gatsby-plugin-feed": "^2.0.5",
"gatsby-plugin-lunr": "^1.2.0",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-mdx": "^1.0.17",
"gatsby-plugin-netlify": "^2.0.0",
"gatsby-plugin-nprogress": "^2.0.5",
"gatsby-plugin-offline": "^3.0.8",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.5",
"gatsby-plugin-sitemap": "^2.0.1",
"gatsby-plugin-typegen": "^0.2.0",
"gatsby-plugin-typescript": "^2.0.0",
"gatsby-plugin-typography": "^2.2.0",
"gatsby-remark-copy-linked-files": "^2.0.9",
"gatsby-remark-images": "^3.0.6",
"gatsby-remark-prismjs": "^3.2.6",
"gatsby-remark-smartypants": "^2.0.8",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-remark": "^2.6.10",
"gatsby-transformer-sharp": "^2.1.1",
"graphql": "^14.5.8",
"graphql-tag-pluck": "^0.8.5",
"gray-percentage": "^2.0.0",
"lodash": "^4.17.5",
"lunr": "^2.3.3",
"normalize.css": "^8.0.0",
"prismjs": "^1.15.0",
"ramda": "^0.27.0",
"react": "^16.5.2",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.13",
"regenerator-runtime": "^0.13.2",
"typeface-domine": "^0.0.72",
"typeface-montserrat": "^0.0.75",
"typography": "^0.16.17",
"typography-breakpoint-constants": "^0.16.18"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/polyfill": "^7.2.5",
"@pacote/eslint-config": "^2.0.0",
"@pacote/eslint-config-jest": "^1.0.0",
"@pacote/eslint-config-react": "^1.0.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.0.2",
"@types/compass-vertical-rhythm": "^1.4.0",
"@types/gray-percentage": "^2.0.0",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.104",
"@types/node": "^13.7.0",
"@types/ramda": "^0.27.0",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-helmet": "^5.0.5",
"@types/typography": "^0.16.0",
"@types/typography-breakpoint-constants": "^0.16.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^2.0.1",
"ts-jest": "^25.2.0",
"typescript": "^3.0.3",
"webpack": "^4.19.1"
},
"keywords": [
"gatsby",
"markdown",
"typescript"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write '{__mocks__,src,test}/**/*.{ts,tsx}' '*.js'",
"lint": "eslint '{__mocks__,src,test}/**/*.{js,ts,tsx}'",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{js,json,md}": [
"prettier --write"
]
},
"jest": {
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect",
"./setup-jest.js"
],
"globals": {
"__PATH_PREFIX__": ""
},
"testURL": "http://localhost",
"transform": {
"^.+\\.(tsx?|jsx?)$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"typeface-*": "identity-obj-proxy",
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file.js"
},
"collectCoverage": false,
"coverageReporters": [
"lcov",
"text",
"html"
]
}
}