-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
90 lines (90 loc) · 3.38 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": "LumApps",
"bugs": {
"url": "https://github.com/lumapps/design-system/issues"
},
"description": "The official LumApps Design System (LumX) for AngularJS 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",
"lerna": "^3.18.4",
"lint-staged": "^10.5.3",
"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",
"webpack": "^4.44.1",
"webpack-cli": "^4.2.0",
"yarn": "^1.22.21",
"yeoman-generator": "^4.1.0",
"yo": "^3.1.0"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 4.0.0",
"yarn": ">= 1.3.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": [
"AngularJS",
"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": "lerna run --stream build",
"build:libs": "lerna run --no-private --stream build",
"build:site": "yarn workspace lumx-site-demo clean && yarn workspace lumx-site-demo build",
"build:react": "yarn workspace @lumx/react build",
"build:core": "yarn workspace @lumx/core build",
"build:icons": "yarn workspace @lumx/icons build",
"build:angularjs": "yarn workspace @lumx/angularjs build",
"build:storybook": "yarn workspace @lumx/react build:storybook",
"chromatic": "npx chromatic -b build:storybook",
"clean": "rm -rf packages/*/dist; lerna clean --yes && lerna run --stream 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": "yarn lint:code --fix",
"lint": "yarn lint:code; yarn lint:style",
"lint:style": "stylelint packages/**/*.{css,scss}",
"lint:code": "eslint packages/",
"prepare": "lerna run --stream prepare",
"release": "yarn lerna publish --force-publish",
"scaffold": "yo ./packages/yo-generators --with-tests --with-demo",
"setup:git-hooks": "yarn husky uninstall && yarn husky install || exit 0",
"start": "yarn workspace lumx-site-demo start",
"test": "yarn workspace @lumx/react test",
"type-check": "yarn tsc -p tsconfig.json",
"storybook:react": "yarn workspace @lumx/react start:storybook",
"storybook": "yarn storybook:react",
"generate:design-tokens": "yarn workspace @lumx/core generate:design-tokens",
"generate:icons": "yarn workspace @lumx/icons generate:icons"
},
"workspaces": [
"packages/*",
"dev-packages/*"
],
"packageManager": "[email protected]"
}