-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.26 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
{
"name": "pages",
"version": "0.0.1",
"description": "A monorepo containing all packages used in Yext Pages rendering",
"author": "[email protected]",
"license": "BSD-3-Clause",
"private": true,
"type": "module",
"main": "index.js",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"release": "tsx scripts/release.ts",
"fmt": "prettier --write --cache .",
"generate-notices": "generate-license-file --input package.json --output ./THIRD-PARTY-NOTICES --overwrite",
"lint": "eslint --cache --fix .",
"docs": "pnpm -r run api-extractor && pnpm -r run generate-docs && pnpm run fmt",
"ci-publish": "tsx scripts/publishCI.ts",
"prepare": "husky install"
},
"lint-staged": {
"*": "prettier --write --cache --ignore-unknown",
"*.{ts,js,tsx,jsx}": "eslint --cache --fix"
},
"engines": {
"node": "^18 || ^20.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yext/pages.git"
},
"bugs": {
"url": "https://github.com/yext/pages/issues"
},
"homepage": "https://github.com/yext/pages#readme",
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.48.2",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.6",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"generate-changelog": "^1.8.0",
"generate-license-file": "^3.6.0",
"globals": "^15.12.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"yaml": "^2.3.4"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite": "^5.3.5"
}
}
}
}