-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.84 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "spirit",
"version": "1.0.0",
"description": "Spirit Design System",
"keywords": [
"spirit",
"design",
"system"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=18"
},
"workspaces": [
"configs/*",
"packages/*",
"examples/*",
"exporters/*",
"apps/demo",
"apps/storybook"
],
"scripts": {
"start": "yarn packages:start --ignore '@almacareer/spirit-example*'",
"build": "npm-run-all --serial packages:build:libs packages:build:web",
"es:lint": "eslint ./",
"es:lint:fix": "yarn es:lint --fix",
"format": "yarn format:check",
"format:check": "prettier --check ./",
"format:fix": "prettier --write ./",
"format:fix:changelog": "prettier --write ./**/CHANGELOG.md",
"prepare": "is-ci || husky install",
"storybook": "lerna run start --scope=@lmc-eu/spirit-storybook",
"test": "yarn packages:test",
"test:unit": "yarn packages:test:unit",
"test:e2e": "yarn playwright test",
"test:e2e:update": "yarn playwright test --update-snapshots",
"test:e2e:report": "yarn playwright show-report",
"test:e2e:ui": "yarn playwright test --ui",
"types": "yarn packages:types",
"lint": "npm-run-all --parallel es:lint lint:markdown packages:lint",
"lint:fix": "npm-run-all --parallel es:lint:fix packages:lint:fix",
"lint:markdown": "remark ./ --quiet",
"lint:commit": "yarn commitlint --verbose --color --from $(git merge-base origin/main HEAD)",
"packages:lint:fix": "lerna run lint:fix --parallel",
"packages:lint": "lerna run lint --parallel --no-sort",
"packages:start": "lerna run start --parallel",
"packages:test": "lerna run test",
"packages:test:unit": "lerna run test:unit",
"packages:types": "lerna run types --no-sort",
"packages:build:libs": "lerna run build --ignore '@lmc-eu/spirit-web*' --ignore=@lmc-eu/spirit-demo-app --ignore=@lmc-eu/spirit-storybook --ignore '@almacareer/spirit-example*'",
"packages:build:web": "lerna run build --scope '@lmc-eu/spirit-web*' --ignore=@lmc-eu/spirit-demo-app",
"packages:publish": "lerna publish",
"packages:diff": "lerna diff",
"packages:changed": "lerna changed",
"packages:list": "lerna ls",
"release": "npm-run-all --serial packages:build && packages:publish",
"version": "yarn format:fix:changelog"
},
"devDependencies": {
"@almacareer/remark-config": "0.1.0",
"@babel/core": "7.25.8",
"@babel/preset-react": "7.25.7",
"@commitlint/cli": "19.5.0",
"@lmc-eu/commitlint-config": "2.0.3",
"@lmc-eu/conventional-changelog-lmc-github": "3.0.3",
"@lmc-eu/eslint-config-react": "2.0.5",
"@omlet/cli": "1.11.0",
"@playwright/test": "1.48.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.3.0",
"@svgr/webpack": "8.1.0",
"babel-loader": "9.2.1",
"core-js": "3.38.1",
"css-loader": "7.1.2",
"eslint": "8.57.1",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-storybook": "0.9.0",
"husky": "9.1.6",
"is-ci": "3.0.1",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"netlify-cli": "17.37.0",
"npm-run-all2": "6.2.3",
"nx": "19.7.2",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-config-spirit": "workspace:^",
"prettier-plugin-toml": "2.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "15.5.0",
"react-textarea-autosize": "8.5.4",
"remark-cli": "12.0.1",
"remark-lint-heading-capitalization": "1.2.0",
"sass-loader": "14.2.1",
"style-loader": "4.0.0",
"typescript": "4.7.4",
"vite-raw-plugin": "1.0.2",
"webpack": "5.95.0",
"webpack-cli": "5.1.4"
},
"resolutions": {
"typescript": "4.7.4"
},
"packageManager": "[email protected]"
}