-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.66 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "zap-blog",
"description": "A fastest micro blog service",
"version": "1.0.0",
"private": true,
"author": "Zap <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" --max-warnings=0",
"start": "yarn dev",
"precommit": "lint-staged",
"test": "jest",
"test:coverage": "jest --coverage",
"tsc": "tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"babel-plugin-styled-components": "^1.13.3",
"classnames": "^2.3.1",
"gatsby": "^4.1.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-canonical-urls": "^4.1.0",
"gatsby-plugin-emotion": "^7.1.0",
"gatsby-plugin-react-helmet": "^5.1.0",
"gatsby-plugin-sharp": "^4.1.0",
"gatsby-plugin-typescript": "^4.1.0",
"gatsby-remark-copy-linked-files": "^5.1.0",
"gatsby-remark-figure-caption": "^2.0.0",
"gatsby-remark-images": "^6.1.0",
"gatsby-remark-prismjs": "^6.1.0",
"gatsby-remark-responsive-iframe": "^5.1.0",
"gatsby-remark-smartypants": "^5.1.0",
"gatsby-source-filesystem": "^4.1.0",
"gatsby-transformer-json": "^4.1.0",
"gatsby-transformer-remark": "^5.1.0",
"gatsby-transformer-sharp": "^4.1.0",
"modern-normalize": "^1.1.0",
"normalize.css": "^8.0.1",
"polished": "^4.1.3",
"prism-themes": "^1.9.0",
"prismjs": "^1.25.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addons": "^6.3.12",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.3.12",
"@testing-library/react": "^12.1.2",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-loader": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-gatsby": "^2.1.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-config-blvd": "^1.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"gatsby-plugin-manifest": "^4.1.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-typegen": "^2.2.4",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6"
},
"lint-staged": {
"./src/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn tsc --noEmit && yarn lint && CI=ture yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}