-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.11 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.11 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
{
"name": "blog",
"description": "A personal blog website.",
"version": "1.0.0",
"author": "Louis Young",
"scripts": {
"start": "npm run develop",
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "npm run build && npm run serve",
"typecheck": "tsc",
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"lint:ls": "ls-lint",
"format": "prettier --check \"./src/**/*.{ts,tsx}\"",
"format:write": "prettier --write \"./src/**/*.{ts,tsx}\""
},
"homepage": "https://github.com/louis-young/blog#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/louis-young/blog.git"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"gatsby": "^4.4.0",
"gatsby-plugin-google-gtag": "^4.4.0",
"gatsby-plugin-image": "^2.4.0",
"gatsby-plugin-layout": "^3.4.0",
"gatsby-plugin-manifest": "^4.4.0",
"gatsby-plugin-mdx": "^3.4.0",
"gatsby-plugin-postcss": "^5.4.0",
"gatsby-plugin-react-helmet": "^5.4.0",
"gatsby-plugin-sharp": "^4.4.0",
"gatsby-plugin-typescript": "^4.4.0",
"gatsby-remark-autolink-headers": "^5.4.0",
"gatsby-remark-images": "^6.4.0",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-transformer-sharp": "^4.4.0",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"postcss": "^8.4.5",
"prettier": "2.5.1",
"tailwindcss": "^3.0.7",
"typescript": "^4.5.4",
"@ls-lint/ls-lint": "^1.10.0",
"@types/node": "^12.20.37",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0"
}
}