forked from South-Paw/awesome-gatsby-starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.65 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
{
"name": "@south-paw/awesome-gatsby-starter-ts",
"version": "1.0.1",
"description": "A TypeScript starter for GatsbyJS with a preconfigured MDX, Storybook and ESLint environment",
"keywords": [
"gatsby",
"gatsby-starter"
],
"homepage": "https://github.com/South-Paw/awesome-gastby-starter-ts",
"bugs": "https://github.com/South-Paw/awesome-gastby-starter-ts/issues",
"license": "MIT",
"author": {
"name": "Alex Gabites",
"email": "[email protected]",
"url": "http://southpaw.co.nz/"
},
"repository": {
"type": "git",
"url": "https://github.com/South-Paw/awesome-gastby-starter-ts"
},
"scripts": {
"build": "gatsby build",
"build:storybook": "cross-env NODE_ENV=production build-storybook -c .storybook -o public/docs",
"clean": "rimraf ./.cache ./public",
"start": "gatsby develop",
"start:storybook": "cross-env NODE_ENV=production start-storybook -p 9000 -c .storybook",
"lint": "tsc --noEmit && eslint .",
"serve": "gatsby serve"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.6",
"@mdx-js/react": "^1.6.6",
"gatsby": "^2.24.2",
"gatsby-image": "^2.4.13",
"gatsby-plugin-manifest": "^2.4.18",
"gatsby-plugin-mdx": "^1.2.25",
"gatsby-plugin-offline": "^3.2.17",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.19",
"gatsby-plugin-styled-components": "^3.3.10",
"gatsby-source-filesystem": "^2.3.19",
"gatsby-transformer-sharp": "^2.5.11",
"polished": "^3.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-uid": "^2.3.0",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@storybook/addon-actions": "^6.0.0-beta.31",
"@storybook/addon-docs": "^6.0.0-beta.31",
"@storybook/addon-links": "^6.0.0-beta.31",
"@storybook/react": "^6.0.0-beta.31",
"@types/react-helmet": "^6.0.0",
"@types/styled-components": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5",
"react-is": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "^3.9.6"
}
}