-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "yext-js",
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"prettier": "prettier --write --cache .",
"lint": "eslint --cache --fix packages/ scripts/",
"autofix": "npm run lint && npm run prettier",
"test": "turbo run test",
"generate-notices": "turbo run generate-notices && generate-license-file --input package.json --output ./THIRD-PARTY-NOTICES --overwrite",
"ci-publish": "tsx scripts/publishCI.ts",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^20.4.1",
"@types/luxon": "^3.4.1",
"luxon": "^3.4.4",
"@types/prompts": "^2.4.4",
"@types/semver": "^7.5.0",
"@yext/eslint-config": "^1.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"generate-license-file": "^2.0.0",
"lint-staged": "^13.2.3",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"tsx": "^3.12.7",
"turbo": "^1.10.8"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*": "prettier --write --cache --ignore-unknown",
"*.{ts,js,tsx,jsx}": "eslint --cache --fix"
}
}