-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.27 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
{
"private": true,
"type": "module",
"scripts": {
"lib": "pnpm --filter react-seo-meta-tags watch",
"site": "pnpm --filter site start",
"format": "pnpm pretty && pnpm lint",
"pretty": "prettier --write \"**/*.+(js|jsx|json|html|css|less|scss|ts|tsx|yml|yaml|md|graphql|mdx)\" .",
"lint": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.ts,.tsx .",
"cs": "changeset && git add .changeset",
"ci:version": "changeset version",
"ci:publish": "changeset publish && git push --follow-tags"
},
"engines": {
"node": ">=16",
"pnpm": ">=7.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vite-plugin-dts": "^2.2.0"
}
}