-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.65 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
111
112
113
{
"name": "spirit",
"version": "1.0.0",
"description": "Spirit Design System",
"keywords": [
"spirit",
"design",
"system"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=14",
"yarn": "~1.22.10"
},
"workspaces": [
"packages/*",
"exporters/*"
],
"scripts": {
"start": "yarn packages:start",
"prebuild": "yarn packages:build:libs",
"build": "yarn packages:build:web",
"es:lint": "eslint ./",
"es:lint:fix": "yarn es:lint --fix",
"commit:lint:test": "yarn commitlint --from HEAD~1 --to HEAD --verbose",
"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": "storybook dev -p 6006",
"storybook:build": "storybook build -o ./.storybook/build",
"test": "yarn packages:test",
"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 packages:lint",
"packages:lint": "lerna run lint --parallel --no-sort",
"packages:start": "lerna run start --parallel",
"packages:test": "lerna run test",
"packages:types": "lerna run types --no-sort",
"packages:build:libs": "lerna run build --ignore=@lmc-eu/spirit-web*",
"packages:build:web": "lerna run build --scope=@lmc-eu/spirit-web*",
"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": {
"@babel/core": "7.23.7",
"@babel/preset-react": "7.23.3",
"@commitlint/cli": "17.8.1",
"@lmc-eu/commitlint-config": "2.0.1",
"@lmc-eu/conventional-changelog-lmc-github": "3.0.1",
"@lmc-eu/eslint-config-react": "2.0.2",
"@lmc-eu/prettier-config": "2.0.0",
"@nrwl/cli": "15.9.3",
"@omlet/cli": "1.1.2",
"@playwright/test": "1.40.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@storybook/addon-actions": "7.4.6",
"@storybook/addon-docs": "7.4.6",
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addons": "7.4.6",
"@storybook/blocks": "7.4.6",
"@storybook/client-api": "7.4.6",
"@storybook/html": "7.4.6",
"@storybook/react": "7.4.6",
"@storybook/react-vite": "7.4.6",
"@storybook/theming": "7.4.6",
"@svgr/webpack": "8.1.0",
"babel-loader": "9.1.3",
"core-js": "3.35.0",
"css-loader": "6.8.1",
"eslint": "8.56.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.15",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lerna": "7.4.2",
"netlify-cli": "12.14.0",
"npm-run-all": "4.1.5",
"nx": "17.2.8",
"postcss": "8.4.33",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "15.5.0",
"react-textarea-autosize": "8.5.3",
"sass-loader": "13.3.3",
"storybook": "7.4.6",
"style-loader": "3.3.3",
"typescript": "4.7.4",
"vite-raw-plugin": "1.0.2",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"resolutions": {
"@types/react": "18.2.37",
"typescript": "4.7.4"
}
}