-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) ยท 2.23 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
{
"name": "@with-me/design-system",
"description": "with me design-system monorepo",
"author": "์ฌ์ฐฌ๊ท <[email protected]>",
"version": "0.0.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Team-WithMe/WithMe_UI"
},
"workspaces": {
"packages": [
"packages/*",
"playground"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.scss": [
"yarn lint:scss-fix"
],
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"lint": "yarn lerna run lint",
"lint:fix": "yarn lerna run lint:fix",
"lint:scss": "stylelint '**/*.scss'",
"lint:scss-fix": "yarn lint:scss --fix",
"dev": "yarn lerna run dev",
"build": "yarn build && yarn lerna run build",
"build:storybook": "yarn build && yarn lerna run build:storybook",
"commit": "yarn git-cz",
"clean": "yarn clean:dist && yarn clean:modules",
"clean:dist": "bash ./scripts/clean-dist.sh",
"clean:modules": "bash ./scripts/clean-modules.sh",
"prepare": "husky install",
"publish": "yarn build && yarn lerna publish",
"update": "yarn upgrade && yarn syncyarnlock -s -k"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"lerna": "^5.6.2",
"lint-staged": "^13.1.0",
"postcss": "^8.4.19",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.1",
"stylelint": "^14.16.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"syncyarnlock": "^1.0.19",
"ts-node": "^10.9.1"
}
}