-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "dev-fonts",
"version": "1.0.0",
"description": "Gatsby example site demonstrating how to use TypeScript with Gatsby",
"author": "fabien0102 <fabien0102@gmail.com>",
"license": "MIT",
"scripts": {
"start": "gatsby develop",
"develop": "gatsby develop",
"build": "gatsby build",
"ts": "tsc --noEmit",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
"ci": "yarn ts && yarn lint"
},
"dependencies": {
"@ant-design/icons": "^4.0.6",
"antd": "^4.1.2",
"gatsby": "^2.20.16",
"gatsby-plugin-antd": "^2.2.0",
"gatsby-plugin-google-analytics": "^2.2.2",
"gatsby-plugin-react-helmet": "^3.2.1",
"gatsby-plugin-sass": "^2.2.1",
"gatsby-plugin-typescript": "^2.3.1",
"gatsby-plugin-typography": "^2.4.1",
"lodash": "^4.17.21",
"node-sass": "^4.13.1",
"react": "^16.12.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-typography": "^0.16.19",
"typography": "^0.16.19",
"typography-theme-bootstrap": "^0.16.19"
},
"devDependencies": {
"@types/codemirror": "^0.0.91",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-helmet": "^5.0.15",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"prettier": "^2.0.4",
"typescript": "^3.7.2"
}
}