-
Notifications
You must be signed in to change notification settings - Fork 276
/
package.json
49 lines (49 loc) · 1.52 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
{
"private": true,
"scripts": {
"reset": "lerna clean --yes && yarn dlx rimraf node_modules && yarn install && yarn build",
"build": "lerna run build",
"lint-packages": "lerna run lint",
"scaffold-samples": "node ./scripts/scaffold-samples.js",
"lint-samples": "node ./scripts/lint-samples.js",
"coverage-packages": "lerna run coverage",
"test-packages": "lerna run test",
"install-git-hooks": "node ./scripts/install-hooks.js",
"generate-docs": "lerna run generate-docs",
"version": "yarn install && git stage yarn.lock"
},
"author": {
"name": "Sitecore Corporation",
"url": "https://jss.sitecore.com"
},
"license": "Apache-2.0",
"homepage": "https://jss.sitecore.com",
"bugs": {
"url": "https://github.com/sitecore/jss/issues"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-prettier": "^3.3.0",
"lerna": "^5.6.2",
"prettier": "^1.14.3",
"typedoc": "^0.26.0",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "~5.6.3"
},
"resolutions": {
"cheerio": "1.0.0-rc.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"@types/react-native/@types/react": "17.0.34",
"@types/react-native-htmlview/@types/react": "17.0.34"
},
"workspaces": [
"packages/*",
"samples/*"
],
"packageManager": "yarn@3.1.0"
}