-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.88 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
{
"name": "dvc-blog",
"private": true,
"description": "Blog for dvc.org",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"start": "yarn develop",
"typecheck": "tsc --noEmit",
"lint-ts": "tslint --project .",
"lint-css": "stylelint \"src/**/*.css\"",
"format-all": "prettier --write './**/*.{js,jsx,md,tsx,ts,json}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn prettier --write",
"yarn lint-ts",
"git add"
],
"*.md": [
"yarn prettier --write",
"git add"
],
"*.css": [
"yarn stylelint --fix",
"git add"
]
},
"dependencies": {
"@reach/portal": "^0.5.0",
"@reach/tooltip": "^0.5.4",
"classnames": "^2.2.6",
"gatsby": "^2.17.11",
"gatsby-image": "^2.2.31",
"gatsby-plugin-twitter": "^2.1.17",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-embed-gist": "^1.1.9",
"gatsby-remark-relative-images": "^0.2.3",
"prismjs": "^1.17.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-use": "^13.6.3",
"rehype-react": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@svgr/webpack": "^4.3.3",
"@types/classnames": "^2.2.9",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.14",
"@types/rehype-react": "^3.1.0",
"autoprefixer": "^9.7.1",
"eslint-plugin-graphql": "^3.1.0",
"gatsby-plugin-feed": "^2.3.20",
"gatsby-plugin-google-analytics": "^2.1.25",
"gatsby-plugin-manifest": "^2.2.27",
"gatsby-plugin-netlify-cms": "^4.1.27",
"gatsby-plugin-netlify-cms-paths": "^1.3.0",
"gatsby-plugin-postcss": "^2.1.14",
"gatsby-plugin-react-helmet": "^3.1.14",
"gatsby-plugin-sharp": "^2.2.37",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-tslint": "^0.0.2",
"gatsby-plugin-typescript": "^2.1.16",
"gatsby-remark-copy-linked-files": "^2.1.29",
"gatsby-remark-images": "^3.1.30",
"gatsby-remark-prismjs": "^3.3.22",
"gatsby-remark-responsive-iframe": "^2.2.26",
"gatsby-remark-smartypants": "^2.1.15",
"gatsby-source-filesystem": "^2.1.36",
"gatsby-transformer-remark": "^2.6.45",
"gatsby-transformer-sharp": "^2.3.3",
"graphql": "^14.5.8",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"netlify-cms-app": "^2.9.7",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^9.0.2",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.1",
"prettier": "^1.19.1",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.1.0",
"typescript": "^3.7.2"
}
}