-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
{
"name": "2020-ddd-conference",
"version": "0.1.2",
"private": true,
"homepage": "https://conference.ddd-tw.com",
"repository": {
"type": "git",
"url": "https://gitlab.com/ddd-tw-community/2020-ddd-conference.git"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"commitizen": "^4.2.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@material-ui/core": "^5.0.0-alpha.7",
"@material-ui/icons": "^5.0.0-alpha.7",
"@material-ui/lab": "^5.0.0-alpha.7",
"@mdx-js/mdx": "^1.6.17",
"@types/lodash": "^4.14.161",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-helmet": "^6.1.0",
"date-fns": "^2.16.1",
"emotion": "^10.0.27",
"gatsby": "^2.24.60",
"gatsby-alias-imports": "^1.0.4",
"gatsby-plugin-emotion": "^4.3.13",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-intl": "^0.3.3",
"gatsby-plugin-layout": "^1.3.11",
"gatsby-plugin-material-ui": "^2.1.10",
"gatsby-plugin-mdx": "^1.2.41",
"gatsby-plugin-react-helmet": "^3.3.11",
"gatsby-plugin-robots-txt": "^1.5.2",
"gatsby-plugin-sitemap": "^2.4.13",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"taipei-sans-tc": "^0.1.1",
"typescript": "^3.9.7",
"typescript-styled-plugin": "^0.15.0"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
}
}