-
Notifications
You must be signed in to change notification settings - Fork 279
/
Copy pathpackage.json
35 lines (35 loc) · 1.4 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
{
"scripts": {
"reset": "lerna clean --yes && npm run bootstrap && npm run build-packages",
"bootstrap": "lerna bootstrap && npm run bootstrap-react && npm run bootstrap-react-dom",
"bootstrap:ci": "lerna bootstrap --ci",
"bootstrap-react": "cd ./packages/sitecore-jss-react/node_modules/react && npm link && cd ../../../../samples/react && npm link react",
"bootstrap-react-dom": "cd ./packages/sitecore-jss-react/node_modules/react-dom && npm link && cd ../../../../samples/react && npm link react-dom",
"build-packages": "lerna run build --ignore *-sample*",
"build-apps": "lerna run build --scope *-sample*",
"lint-packages": "lerna run lint --ignore *-sample*",
"lint-apps": "lerna run lint --ignore @sitecore-jss/*",
"coverage-packages": "lerna run coverage --ignore *-sample*"
},
"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": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-prettier": "^3.3.0",
"lerna": "^3.22.0",
"nyc": "^14.1.1",
"prettier": "^1.14.3",
"typescript": "^3.9.6"
}
}