-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.63 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
{
"name": "jamie-robertson-portfolio",
"private": false,
"description": "Personal portfolio and playground",
"version": "1.1.0",
"author": "[email protected]",
"dependencies": {
"@n8tb1t/use-scroll-position": "^2.0.3",
"@types/styled-components": "^5.1.9",
"babel-plugin-styled-components": "^1.12.0",
"framer-motion": "^4.1.17",
"gatsby": "^4.10.3",
"gatsby-image": "^3.11.0",
"gatsby-link": "^3.13.0",
"gatsby-plugin-csp": "^1.1.3",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "^3.13.0",
"gatsby-plugin-image": "^2.10.1",
"gatsby-plugin-manifest": "^4.10.2",
"gatsby-plugin-netlify": "^5.0.0",
"gatsby-plugin-offline": "^5.10.2",
"gatsby-plugin-polyfill-io": "^1.1.0",
"gatsby-plugin-preconnect": "^1.2.1",
"gatsby-plugin-preload-fonts": "^3.10.1",
"gatsby-plugin-react-helmet": "^5.10.0",
"gatsby-plugin-robots-txt": "^1.6.10",
"gatsby-plugin-sharp": "^4.10.2",
"gatsby-plugin-sitemap": "^5.10.2",
"gatsby-plugin-styled-components": "^5.10.0",
"gatsby-plugin-typescript": "^4.10.1",
"gatsby-react-router-scroll": "^4.13.0",
"gatsby-source-datocms": "^3.0.17",
"gatsby-source-filesystem": "^4.10.1",
"gatsby-transformer-remark": "^5.10.2",
"gatsby-transformer-sharp": "^4.10.0",
"install": "^0.13.0",
"intersection-observer": "^0.12.0",
"polished": "^4.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^8.32.1",
"react-router-hash-link": "^2.4.3",
"react-tsparticles": "^1.42.4",
"smooth-scroll": "^16.1.3",
"styled-components": "^5.3.1",
"styled-components-breakpoint": "^3.0.0-preview.20",
"styled-icons": "^10.33.0",
"styled-reset-advanced": "^1.0.3",
"tsparticles": "^1.34.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-info": "^5.2.21",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-options": "^5.2.21",
"@storybook/addon-storysource": "^6.2.9",
"@storybook/addon-viewport": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/theming": "^6.2.9",
"@types/react-helmet": "^6.1.1",
"@types/storybook__addon-info": "^5.2.3",
"@types/storybook__react": "^5.1.1",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.25",
"prettier": "^2.3.0",
"react-markdown": "^6.0.2",
"typescript": "^4.2.4"
},
"license": "MIT",
"scripts": {
"type-check": "tsc",
"develop": "gatsby develop",
"start": "concurrently --kill-others \"yarn develop\" \"yarn storybook\"",
"serve": "gatsby serve",
"storybook": "start-storybook -p 6006 -c .storybook",
"clean": "gatsby clean",
"build": "yarn build:gatsby",
"build:gatsby": "gatsby build",
"build:storybook": "build-storybook -c .storybook -o public",
"preload-fonts": "gatsby-preload-fonts"
}
}