-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.06 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
{
"name": "lshadler.github.io",
"description": "A personal website for resume, portfolio, and blog",
"version": "1.0.0",
"private": true,
"author": "Lucas Shadler <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b master -m \"deploy site [skip ci]\"",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "jest",
"type-check": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@emotion/core": "10.1.1",
"@emotion/styled": "10.0.27",
"babel-plugin-styled-components": "1.12.0",
"browserslist": "4.16.5",
"classnames": "2.2.6",
"d3": "7.0.0",
"gatsby": "3.0.0",
"gatsby-image": "2.4.17",
"gatsby-plugin-canonical-urls": "2.3.10",
"gatsby-plugin-dark-mode": "1.1.2",
"gatsby-plugin-emotion": "4.3.10",
"gatsby-plugin-react-helmet": "3.3.10",
"gatsby-plugin-sharp": "2.6.35",
"gatsby-plugin-typescript": "2.4.19",
"gatsby-plugin-typography": "2.5.10",
"gatsby-remark-copy-linked-files": "2.3.14",
"gatsby-remark-images": "3.3.29",
"gatsby-remark-prismjs": "3.5.12",
"gatsby-remark-responsive-iframe": "2.4.13",
"gatsby-remark-smartypants": "2.3.10",
"gatsby-source-filesystem": "2.3.29",
"gatsby-source-graphql": "2.13.0",
"gatsby-transformer-json": "2.4.11",
"gatsby-transformer-remark": "4.0.0",
"gatsby-transformer-sharp": "2.5.14",
"modern-normalize": "0.7.0",
"node-fetch": "2.6.1",
"normalize.css": "8.0.1",
"polished": "3.7.2",
"prism-themes": "1.6.0",
"prismjs": "1.25.0",
"react": "16.14.0",
"react-d3-graph": "2.6.0",
"react-dom": "16.14.0",
"react-helmet": "6.1.0",
"react-typography": "0.16.19",
"typescript": "3.9.9",
"typography": "0.16.19",
"typography-theme-grand-view": "0.16.19"
},
"devDependencies": {
"@testing-library/react": "10.4.9",
"@types/browserslist": "4.8.0",
"@types/classnames": "2.2.11",
"@types/jest": "25.2.3",
"@types/node": "12.20.20",
"@types/node-fetch": "2.5.8",
"@types/react": "16.14.5",
"@types/react-dom": "16.9.12",
"@types/react-helmet": "6.1.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-jest": "26.6.3",
"babel-preset-gatsby": "0.5.9",
"eslint": "7.23.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-blvd": "1.1.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.2.0",
"gh-pages": "2.2.0",
"husky": "4.3.8",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.4"
}
}