-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.59 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.59 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "im-d-blog",
"version": "1.1.0",
"description": "Im-D Dev Blog",
"author": "Im-D <im-d-team@gmail.com>",
"license": "MIT",
"scripts": {
"start": "gatsby develop",
"dev": "npm run clean & gatsby develop",
"predeploy": "npm run clean & npm run build",
"deploy": "gh-pages -d public -b master",
"build": "gatsby build",
"clean": "gatsby clean",
"generate": "plop --plopfile ./generators/plopfile.js",
"graphql-types": "gql-gen --url http://localhost:8000/___graphql --template typescript --out ./src/graphql-types.d.ts"
},
"dependencies": {
"@fontsource/fira-sans": "^4.1.0",
"@fontsource/karla": "^4.1.0",
"@fontsource/lato": "^4.1.0",
"@fontsource/noto-sans-kr": "^4.1.0",
"@types/lodash": "^4.14.165",
"@types/reach__router": "^1.3.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"babel-eslint": "^10.1.0",
"gatsby": "^2.30.1",
"gatsby-image": "^2.7.0",
"gatsby-link": "^2.4.2",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-glamor": "^2.6.0",
"gatsby-plugin-google-analytics": "^2.7.0",
"gatsby-plugin-manifest": "^2.10.0",
"gatsby-plugin-offline": "^3.6.0",
"gatsby-plugin-sass": "^2.7.0",
"gatsby-plugin-sharp": "^2.10.0",
"gatsby-plugin-sitemap": "^2.11.0",
"gatsby-plugin-typescript": "^2.4.2",
"gatsby-remark-autolink-headers": "^2.7.0",
"gatsby-remark-copy-linked-files": "^2.6.0",
"gatsby-remark-images": "^3.7.0",
"gatsby-remark-prismjs": "^3.9.0",
"gatsby-source-filesystem": "^2.7.0",
"gatsby-transformer-json": "^2.7.0",
"gatsby-transformer-remark": "^2.12.0",
"gatsby-transformer-sharp": "^2.8.0",
"graphql-code-generator": "^0.16.0",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"slash": "^3.0.0",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2"
},
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/jest": "^25.2.2",
"@types/node": "^14.14.10",
"@types/react-test-renderer": "^16.9.2",
"@types/storybook-readme": "^5.0.4",
"@types/webpack-env": "^1.16.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"flat": "^5.0.2",
"gh-pages": "^2.2.0",
"husky": "^4.3.0",
"jest": "^26.0.1",
"lint-staged": "^10.5.3",
"mkdirp": "^1.0.4",
"plop": "^2.7.4",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.13.1",
"remark-cli": "^8.0.0",
"remark-frontmatter": "^2.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^26.4.4",
"ts-lint": "^4.5.1"
},
"keywords": [],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint . --ext .ts,.tsx --fix",
"eslint . --ext .js,.jsx --fix",
"git add"
],
"*.md": [
"remark . -o",
"node tools/update-post-date.js",
"git add"
],
"*.css": [
"stylelint"
]
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}