-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.82 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
{
"private": true,
"name": "root",
"description": "Package & Example for gatsby-source-tmdb",
"author": "LekoArts <[email protected]>",
"workspaces": [
"example",
"package"
],
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/jest": "^27.5.2",
"@types/node": "^18.17.11",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"typescript": "5.2.2",
"vitest": "^0.34.3"
},
"scripts": {
"develop": "yarn workspace example develop",
"build": "yarn workspace example build",
"package:prepare": "yarn workspace gatsby-source-tmdb prepare",
"package:watch": "yarn workspace gatsby-source-tmdb watch",
"package:build": "yarn workspace gatsby-source-tmdb build",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"format": "prettier \"**/*.{md,mdx,json,yaml}\" --write",
"test:watch": "vitest watch",
"test:ci": "vitest run",
"changeset": "changeset",
"release": "changeset publish",
"release-update-lockfile": "changeset version && yarn install --mode update-lockfile",
"postinstall": "husky install && yarn package:prepare",
"prepare": "yarn postinstall"
},
"packageManager": "[email protected]"
}