-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.62 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
{
"name": "shuqian-hon",
"version": "1.0.0",
"private": true,
"description": "shuqian-hon",
"author": "Shuqian Hon",
"keywords": [
"gatsby"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:deadcode": "ts-prune -i '(test|gatsby)'",
"lint:format": "prettier --check '**/*.{js,jsx,ts,tsx,css}' --write",
"lint:all": "npm run lint:js && npm run lint:format",
"format:js": "prettier '**/*.{js,jsx,ts,tsx}' --write",
"format:styles": "prettier '**/*.css' --write",
"format:all": "npm run format:js && npm run format:styles",
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fontsource/cabin": "^4.5.8",
"@mdx-js/react": "^2.1.3",
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^4.25.7",
"gatsby-plugin-image": "^2.24.0",
"gatsby-plugin-manifest": "^4.24.0",
"gatsby-plugin-mdx": "^4.3.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^5.24.0",
"gatsby-plugin-styled-components": "^5.24.0",
"gatsby-source-contentful": "^7.22.0",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-transformer-sharp": "^4.24.0",
"lodash": "^4.17.21",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-modal": "^3.16.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.11.2",
"@types/node": "^17.0.45",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"gatsby-plugin-postcss": "^5.24.0",
"postcss": "^8.4.31",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"ts-prune": "^0.10.3",
"typescript": "^4.8.3"
}
}