-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
74 lines (74 loc) · 3.36 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
{
"name": "@lightningjs/monorepo",
"version": "0.0.0",
"description": "The Lightning-UI-Components repo utilizes yarn workspaces to combine all packages like ui-components and ui-components-test-utils.",
"repository": "https://github.com/rdkcentral/Lightning-UI-Components",
"homepage": "https://rdkcentral.github.io/Lightning-UI-Components/",
"packageManager": "yarn@3.2.3",
"private": true,
"workspaces": [
"packages/**/*"
],
"scripts": {
"start": "yarn workspace lightning-ui-docs start",
"build": "yarn workspaces foreach --exclude lightning-ui-docs run build",
"build:analyze": "cross-env ANALYZE=true yarn build",
"prepare": "husky install",
"release": "git fetch origin && git checkout develop && git pull origin develop && git pull origin release && git push origin develop && git checkout release && git pull origin release && git pull origin develop && git push origin release",
"lint": "yarn eslint . --ext .js,.ts",
"lint:fix": "yarn eslint . --ext .js,.ts --fix",
"test": "yarn workspaces foreach -v run test",
"test:updateSnapshot": "yarn workspaces foreach -v run test:updateSnapshot",
"clean:dist": "yarn workspaces foreach exec rm -rf ./dist ./storybook-static ./tmp",
"clean": "yarn clean:dist && yarn exec rm -rf node_modules && find ./packages -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"postinstall": "node ./scripts/post-install.js",
"createComponent": "node bin/create.js"
},
"devDependencies": {
"@babel/plugin-transform-optional-chaining": "^7.23.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-image": "^3.0.1",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^6.0.0",
"generate-changelog": "^1.8.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.1",
"jest-watch-typeahead": "^2.2.1",
"mochawesome-merge": "^4.2.1",
"prettier": "^2.7.1",
"rollup": "^3.29.5",
"rollup-plugin-dts": "5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"semantic-release": "^19.0.5",
"semantic-release-monorepo": "^7.0.5",
"semantic-release-slack-bot": "^3.5.3",
"start-server-and-test": "1.14.0",
"typescript": "^4.8.4"
},
"resolutions": {
"@semantic-release/npm@^9.0.0": "patch:@semantic-release/npm@npm%3A9.0.1#./.yarn/patches/@semantic-release-npm-npm-9.0.1-ed6d302b00.patch",
"@semantic-release/npm@^9.0.1": "patch:@semantic-release/npm@npm%3A9.0.1#./.yarn/patches/@semantic-release-npm-npm-9.0.1-ed6d302b00.patch"
}
}