-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "@caddijp/frontend",
"private": true,
"license": "MIT",
"repository": "ssh://[email protected]/caddijp/frontend.git",
"author": "CADDi Co.,Ltd",
"engines": {
"npm": "^8.0.0"
},
"scripts": {
"build": "lerna run build --include-dependencies",
"build-storybook": "npm run --prefix packages/components build-storybook",
"bump": "lerna version --no-git-tag-version --no-push && lerna-changelog",
"clean": "lerna run clean && lerna clean",
"lint": "run-p -l lint:*",
"lint:es": "eslint . --ext=ts,tsx",
"lint:pkg": "lerna run lint --parallel",
"lint:prettier": "prettier --check \"{packages,apps}/**/*.{js,ts,tsx}\"",
"lint:style": "stylelint '**/*.ts{,x}'",
"prepare": "husky install",
"prepublishOnly": "npm run lint",
"start-storybook": "npm run --prefix packages/components start-storybook",
"test": "lerna run test --parallel"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "0.38.0",
"can-npm-publish": "1.3.6",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "8.0.1",
"jest": "27.5.1",
"lerna": "5.0.0",
"lerna-changelog": "2.2.0",
"lint-staged": "12.5.0",
"npm-run-all": "4.1.5",
"prettier-plugin-organize-imports": "2.3.4",
"prettier-plugin-package": "1.3.0",
"stylelint-config-styled-components": "0.1.1",
"typescript": "4.7.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.tsx": [
"stylelint --fix"
],
"*.{js,jsx,json,yml,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
]
}