-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.31 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
{
"name": "jrm-dev",
"private": true,
"description": "My personal blog.",
"version": "1.0.0",
"author": "Joseph R Miles <joe@jrm.dev>",
"dependencies": {
"@mdx-js/mdx": "^1.5.8",
"@mdx-js/react": "^1.5.8",
"@types/classnames": "^2.2.11",
"classnames": "^2.2.6",
"gatsby": "^2.24.87",
"gatsby-plugin-goatcounter": "^0.3.1",
"gatsby-plugin-mdx": "^1.1.6",
"gatsby-plugin-sass": "^3.0.0",
"gatsby-plugin-sharp": "^2.6.43",
"gatsby-plugin-typescript": "^2.3.1",
"gatsby-remark-autolink-headers": "^2.9.0",
"gatsby-remark-copy-linked-files": "^2.2.1",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.2.2",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-remark-prismjs": "^3.11.0",
"gatsby-remark-series": "^1.0.3",
"gatsby-remark-table-of-contents": "^1.0.0",
"gatsby-remark-twemoji": "^0.0.2",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-markdown-references": "^0.1.5",
"prismjs": "^1.23.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"sass": "^1.26.8"
},
"devDependencies": {
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"gh-pages": "^2.2.0",
"twemoji-loader": "^0.0.4",
"typescript": "^3.8.3",
"typescript-plugin-css-modules": "^3.0.1"
},
"homepage": "https://github.com/joebobmiles/joebobmiles.github.com#readme",
"keywords": [
"gatsby",
"blog"
],
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/joebobmiles/joebobmiles.github.com.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "exit 0",
"deploy": "npm run build && gh-pages -d public -b master",
"deploy:ci": "npm run build && gh-pages -d public -b master -r https://$GITHUB_TOKEN@github.com/joebobmiles/joebobmiles.github.com.git"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "/tests/.+\\.spec\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFilesAfterEnv": [
"<rootDir>src/tests/setupTests.ts"
]
}
}