-
Notifications
You must be signed in to change notification settings - Fork 394
/
package.json
124 lines (124 loc) · 4.23 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
119
120
121
122
123
124
{
"name": "website",
"version": "1.0.0",
"description": "dvc.org – website source code",
"main": "index.js",
"scripts": {
"develop": "gatsby develop",
"dev": "gatsby develop",
"clean": "gatsby clean",
"doc": "LIMIT_BLOG_PAGES=1 gatsby develop",
"author": "LIMIT_BLOG_PAGES=1 SKIP_DOCS=true gatsby develop",
"build": "gatsby build",
"start": "node ./src/server.js",
"heroku-postbuild": "bash node_modules/.bin/heroku-deploy",
"test": "jest",
"format": "prettier --write",
"format-check-all": "prettier --check \"**/*.{js,jsx,md,tsx,ts,json,css,yml,yaml}\"",
"format-all": "prettier --write \"**/*.{js,jsx,md,tsx,ts,json,css,yml,yaml}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json}\"",
"lint-fix": "eslint --fix \"**/*.{js,jsx,ts,tsx,json}\"",
"lint-css": "stylelint \"src/**/*.css\"",
"lint-css-fix": "stylelint --fix \"src/**/*.css\"",
"lint-ts": "tsc --noEmit --skipLibCheck",
"fix-all": "yarn format-all && yarn lint-fix && yarn lint-css-fix && yarn lint-ts",
"link-check": "repo-link-check -c config/link-check/config.yml",
"link-check-diff": "repo-link-check -c config/link-check/config.yml -d main",
"link-check-dev-server": "repo-link-check -c config/link-check/config.yml -r http://localhost:3000",
"link-check-exclude": "repo-link-check -c config/link-check/config.yml --unused-patterns-only",
"format-staged": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/iterative/dvc.org"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iterative/dvc.org/issues"
},
"homepage": "https://github.com/iterative/dvc.org#readme",
"engines": {
"node": ">=18.x <=21.x"
},
"dependencies": {
"@dvcorg/gatsby-theme-iterative": "0.3.24",
"@dvcorg/websites-server": "0.2.1",
"@iframe-resizer/react": "5.3.1",
"@octokit/request": "8.4.0",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-label": "2.1.0",
"@reach/router": "1.3.4",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"dotenv": "16.4.5",
"gatsby": "5.13.7",
"gatsby-plugin-catch-links": "5.13.1",
"gatsby-plugin-google-tagmanager": "5.13.1",
"gatsby-plugin-image": "3.13.1",
"gatsby-plugin-manifest": "5.13.1",
"gatsby-plugin-postcss": "6.13.1",
"gatsby-plugin-sharp": "5.13.1",
"gatsby-plugin-twitter": "5.13.1",
"gatsby-plugin-webpack-bundle-analyser-v2": "1.1.32",
"gatsby-source-rss-feed": "1.2.2",
"isomorphic-fetch": "3.0.0",
"lucide-react": "0.452.0",
"moment": "2.30.1",
"nanoid": "4.0.2",
"promise-polyfill": "8.3.0",
"prop-types": "15.8.1",
"raf-polyfill": "1.0.0",
"react": "18.3.1",
"react-collapse": "5.1.1",
"react-dom": "18.3.1",
"react-focus-lock": "2.13.2",
"react-helmet": "6.1.0",
"react-popover": "0.5.10",
"react-slick": "0.30.2",
"react-use": "17.5.1",
"repo-link-check": "0.14.2",
"slick-carousel": "1.8.1",
"tailwind-merge": "2.5.3",
"tailwindcss-animate": "1.0.7",
"typed.js": "2.1.0",
"upath": "2.0.1",
"webpack-filter-warnings-plugin": "1.2.1"
},
"devDependencies": {
"@babel/core": "7.25.8",
"@types/gatsbyjs__reach-router": "2.0.4",
"@types/isomorphic-fetch": "0.0.39",
"@types/promise-polyfill": "6.0.6",
"@types/react": "18.3.11",
"@types/react-collapse": "5.0.4",
"@types/react-helmet": "6.1.11",
"@types/react-popover": "0.5.8",
"@types/react-slick": "0.23.13",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"gatsby-plugin-react-helmet": "6.13.1",
"gatsby-source-filesystem": "5.13.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"remark": "15.0.1",
"remark-html": "16.0.1",
"stylelint": "16.10.0",
"stylelint-config-standard": "36.0.1",
"typescript": "5.6.3"
},
"cacheDirectories": [
"node_modules"
],
"packageManager": "[email protected]"
}