-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.61 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.61 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"author": "LumApps",
"bugs": {
"url": "https://github.com/lumapps/design-system/issues"
},
"description": "The official LumApps Design System (LumX) for Vue and React applications",
"devDependencies": {
"changelog-verify": "^1.1.2",
"es-abstract": "1.17.6",
"eslint": "^8.57.0",
"husky": "^5.0.4",
"jsx-ast-utils": "^3.1.0",
"lint-staged": "^10.5.3",
"nx": "22.5.4",
"playwright": "^1.58.2",
"postcss-hover-media-feature": "^0.3.1",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"stylelint": "^14.9.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^5.4.3"
},
"engines": {
"node": ">= 24.0.0"
},
"homepage": "https://github.com/lumapps/design-system",
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{scss,css}": [
"stylelint --fix"
],
"*.{md,html}": "prettier --write"
},
"keywords": [
"Vue",
"Design System",
"LumApps",
"LumX",
"React"
],
"license": "MIT",
"name": "@lumx/lumx",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/lumapps/design-system.git"
},
"scripts": {
"build:libs": "nx run-many --target=build --projects=@lumx/icons,@lumx/core,@lumx/react,@lumx/vue",
"build:site": "yarn workspace lumx-site-demo clean && nx run lumx-site-demo:build",
"build:react": "nx run @lumx/react:build",
"build:core": "nx run @lumx/core:build",
"build:icons": "nx run @lumx/icons:build",
"build:vue": "nx run @lumx/vue:build",
"build:storybook:react": "nx run @lumx/react:build:storybook",
"build:storybook:vue": "nx run @lumx/vue:build:storybook",
"clean": "yarn workspaces foreach --all --parallel run clean",
"clean:git-hooks": "yarn husky uninstall",
"format": "yarn format:code && yarn format:style",
"format:style": "prettier-stylelint --prettier-last --write packages/**/*.{css,scss}",
"format:code": "eslint packages/ --fix",
"lint": "nx run-many --target=lint; yarn lint:style",
"lint:style": "stylelint packages/**/*.{css,scss}",
"lint:code": "nx run-many --target=lint",
"setup:git-hooks": "yarn husky uninstall && yarn husky install || exit 0",
"start": "yarn workspace lumx-site-demo start",
"test": "nx run-many --target=test",
"test:react": "nx run @lumx/react:test",
"test:vue": "nx run @lumx/vue:test",
"test:core": "nx run @lumx/core:test",
"test:storybook": "nx run-many --target=test:storybook",
"test:storybook:react": "nx run @lumx/react:test:storybook",
"test:storybook:vue": "nx run @lumx/vue:test:storybook",
"test:all": "nx run-many --target=test,test:storybook",
"visual-diffs": "nx run @lumx/visual-diffs:visual-diffs",
"type-check": "nx run-many --target=type-check",
"storybook:react": "yarn workspace @lumx/react start:storybook",
"storybook:vue": "yarn workspace @lumx/vue start:storybook",
"storybook": "yarn storybook:react",
"generate:design-tokens": "yarn workspace @lumx/core generate:design-tokens",
"generate:icons": "yarn workspace @lumx/icons generate:icons",
"postinstall": "nx run @lumx/icons:build"
},
"workspaces": [
"packages/*",
"dev-packages/*",
".github/actions"
],
"packageManager": "yarn@4.12.0",
"version": "4.12.1"
}