-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 2.5 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
{
"private": "true",
"name": "@livechat/ds-workspace",
"version": "1.0.0",
"description": "LiveChat Design System",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna exec rimraf dist lib",
"prestart": "npm run clean && npm run build:icons",
"start": "lerna run dev",
"start:example": "lerna run start --scope example-react --stream",
"prebuild": "npm run clean",
"build": "lerna run build --scope @livechat/design-system-react-components --scope @livechat/design-system-metrics",
"build:icons": "lerna run build --scope @livechat/design-system-icons",
"chromatic": "lerna run chromatic --stream",
"prepare": "husky install",
"lint-staged": "lerna run lint-staged --stream",
"lint": "lerna run lint --stream",
"test": "lerna run test --ignore example-react --stream",
"test:watch": "lerna run test:watch --parallel",
"prettier": "prettier --write packages",
"check": "run-s lint test",
"predeploy": "npm run check && npm run prettier && npm run build",
"deploy": "lerna version --conventional-commits --no-changelog && lerna publish from-package",
"predeploy:auto": "npm run predeploy",
"deploy:auto": "lerna version --conventional-commits --no-changelog --yes && lerna publish from-package --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livechat/design-system.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/livechat/design-system/issues"
},
"homepage": "https://github.com/livechat/design-system#readme",
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"dotenv-cli": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-react-compiler": "^0.0.0-experimental-0998c1e-20240625",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^8.0.3",
"lerna": "^8.1.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "3.0.1",
"rimraf": "^5.0.1",
"stylelint": "^15.10.2",
"stylelint-config-concentric-order": "^5.1.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0"
},
"volta": {
"node": "20.14.0"
}
}