This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
88 lines (88 loc) · 2.59 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
{
"name": "mlem.ai",
"private": true,
"description": "MLEM landing page",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"dev": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write \"**/*.{js,json,css,md}\"",
"lint-ts": "tsc && eslint --ext .js,.tsx,.ts,.json",
"check-format": "prettier -c \"**/*.{js,json,css,md}\"",
"check-format-and-lint": "npm-run-all format lint-ts"
},
"dependencies": {
"@dvcorg/gatsby-theme-iterative": "^0.1.3",
"@sentry/gatsby": "^6.19.6",
"@svgr/webpack": "^6.2.1",
"autoprefixer": "^10.4.4",
"classnames": "^2.3.1",
"gatsby": "^4.14.1",
"gatsby-plugin-image": "^2.1.0",
"gatsby-plugin-manifest": "^4.1.0",
"gatsby-plugin-postcss": "^5.1.0",
"gatsby-plugin-react-helmet": "^5.1.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sharp": "^4.1.0",
"gatsby-plugin-svgr": "^3.0.0-beta.0",
"gatsby-plugin-typescript": "^4.1.0",
"gatsby-remark-images": "^6.14.0",
"gatsby-remark-prismjs": "^6.12.1",
"gatsby-source-filesystem": "^4.1.0",
"gatsby-transformer-sharp": "^4.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prismjs": "^1.28.0",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"tailwindcss": "3.0.23",
"typed.js": "^2.0.12"
},
"devDependencies": {
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-webpack-plugin": "^3.1.0",
"gatsby-plugin-eslint": "^4.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"postcss-custom-media": "^8.0.0",
"postcss-mixins": "^9.0.2",
"postcss-nested": "^5.0.6",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,json}": "eslint",
"*.{js,json,css,md}": "prettier --write"
},
"engines": {
"node": ">=14.x <=17.x"
}
}