forked from panzerdp/dmitripavlutin.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.04 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": "dmitri-pavlutin-blog",
"description": "Dmitri Pavlutin Blog",
"version": "1.0.0",
"author": "Dmitri Pavlutin <[email protected]>",
"bugs": {
"url": "https://github.com/panzerdp/dmitripavlutin.com/issues"
},
"dependencies": {
"@graphql-codegen/cli": "1.13.1",
"@graphql-codegen/typescript": "1.13.1",
"@graphql-codegen/typescript-operations": "1.13.1",
"@types/enzyme": "3.10.5",
"@types/jest": "25.1.4",
"@types/react-helmet": "5.0.15",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"codecov": "3.6.5",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.4",
"eslint": "6.8.0",
"eslint-plugin-react": "7.19.0",
"gatsby": "2.20.9",
"gatsby-cli": "2.11.3",
"gatsby-image": "2.3.1",
"gatsby-link": "2.3.1",
"gatsby-plugin-disqus": "1.1.4",
"gatsby-plugin-feed": "2.4.1",
"gatsby-plugin-google-analytics": "2.2.2",
"gatsby-plugin-minify-classnames": "0.2.0",
"gatsby-plugin-netlify-cache": "1.2.0",
"gatsby-plugin-react-helmet": "3.2.1",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"gatsby-plugin-sass": "2.2.1",
"gatsby-plugin-sharp": "2.5.3",
"gatsby-plugin-sitemap": "2.3.1",
"gatsby-plugin-typescript": "2.3.1",
"gatsby-plugin-webpack-size": "1.0.0",
"gatsby-remark-autolink-headers": "2.2.1",
"gatsby-remark-code-repls": "3.1.1",
"gatsby-remark-copy-linked-files": "2.2.1",
"gatsby-remark-images": "3.2.1",
"gatsby-remark-prismjs": "3.4.1",
"gatsby-remark-responsive-iframe": "2.3.1",
"gatsby-remark-smartypants": "2.2.1",
"gatsby-source-filesystem": "2.2.2",
"gatsby-transformer-remark": "2.7.1",
"gatsby-transformer-sharp": "2.4.3",
"graphql": "14.6.0",
"identity-obj-proxy": "3.0.0",
"jest": "25.2.4",
"lint-staged": "10.1.0",
"node-sass": "4.13.1",
"normalize.css": "8.0.1",
"path-to-regexp": "6.1.0",
"prettier": "2.0.2",
"prismjs": "1.19.0",
"query-string": "6.11.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "5.2.1",
"react-media": "1.10.0",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
},
"devDependencies": {},
"homepage": "https://github.com/panzerdp/dmitripavlutin.com/",
"keywords": [
"javascript",
"react",
"gatsby"
],
"license": "CC-BY-4.0",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/panzerdp/dmitripavlutin.com.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "eslint 'src/**/*.ts?(x)'",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:coverage:report": "codecov",
"build": "gatsby build",
"type:check": "tsc -p tsconfig.json --noEmit",
"type:generate": "graphql-codegen",
"type:dev": "npm run type:generate -- --watch",
"pre:commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:fix",
"git add"
],
"*.{js,css,ts,tsx}": [
"prettier --write",
"git add"
]
}
}