-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.72 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
{
"name": "bold-ui",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"dev": "pnpm dev-react",
"dev-react": "pnpm --filter @bold-ui/react run dev",
"dev-website": "pnpm --filter @bold-ui/website run dev",
"generate": "pnpm --filter @bold-ui/react run generate",
"build": "pnpm --filter @bold-ui/react run build",
"build-storybook": "pnpm --filter @bold-ui/react run build-storybook",
"chromatic": "pnpm --filter @bold-ui/react run chromatic",
"eslint": "eslint . --ext js,jsx,ts,tsx --cache --max-warnings=0 ",
"eslint-fix": "eslint . --ext js,jsx,ts,tsx --fix --max-warnings=0",
"lint-staged": "lint-staged",
"clean": "git clean -fXd",
"clean-node-modules": "npx rimraf --glob **/node_modules",
"prepare": "husky install",
"build-publish": "pnpm --filter @bold-ui/react run build-publish",
"build-publish-dryrun": "pnpm --filter @bold-ui/react run build-publish-dryrun"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"pnpm": "^8.5.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"typescript-plugin-css-modules": "^5.0.1"
}
}