This repository has been archived by the owner on Jan 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.12 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
{
"version": "1.0.0",
"name": "martijn.site",
"private": true,
"description": "Personal website of Martijn Rondeel",
"main": "n/a",
"scripts": {
"develop": "yarn run clean && gatsby develop",
"build": "yarn run clean && gatsby build",
"clean": "gatsby clean",
"lint": "eslint --ext .ts,.tsx .",
"test": "jest --config ./jest/jest.config.js",
"test:coverage": "jest --coverage --config ./jest/jest.config.js",
"test:watch": "jest --watch --config ./jest/jest.config.js"
},
"repository": "https://github.com/martijnrondeel/martijn.site",
"author": "Martijn Rondeel <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"graphql",
"blog",
"minimal",
"react"
],
"dependencies": {
"@types/autoprefixer": "^9.7.2",
"autoprefixer": "^9.8.0",
"classnames": "^2.2.6",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"gatsby": "^2.22.9",
"gatsby-link": "^2.4.3",
"gatsby-plugin-catch-links": "^2.3.2",
"gatsby-plugin-google-gtag": "^2.1.2",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-optimize-svgs": "^1.0.4",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^2.3.2",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-remark-autolink-headers": "^2.3.3",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.3.8",
"gatsby-remark-prismjs": "^3.5.2",
"gatsby-remark-relative-images": "^0.3.0",
"gatsby-remark-smartypants": "^2.3.2",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-source-github-api": "^0.2.1",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.3",
"lost": "^8.3.1",
"node-sass": "^4.14.1",
"normalize-scss": "^7.0.1",
"postcss-pxtorem": "^5.1.1",
"prismjs": "^1.20.0",
"react": "^16.13.1",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"ts-node": "^8.10.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.2.3",
"@types/node": "^12.12.42",
"@types/react": "^16.9.35",
"@types/react-helmet": "^6.0.0",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.7",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-array-func": "^3.1.6",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"typescript": "^3.9.3"
}
}