forked from bos-sci/anatomy-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.8 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
114
115
116
117
{
"name": "@boston-scientific/anatomy-react",
"version": "3.0.0-beta.2",
"description": "Anatomy Design System's React component library.",
"homepage": "https://www.anatomydesignsystem.com",
"repository": {
"type": "git",
"url": "https://github.com/bos-sci/anatomy-react.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "jest",
"coverage": "jest --coverage",
"lint:styles": "stylelint \"**/*.scss\"",
"fix:styles": "stylelint --fix \"**/*.scss\"",
"lint:scripts": "eslint .",
"fix:scripts": "eslint --cache --fix .",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:all": "npm run lint:styles && npm run lint:scripts && npm run format:check",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes"
},
"files": [
"lib"
],
"main": "./lib/anatomy-react.umd.js",
"module": "./lib/anatomy-react.es.js",
"types": "./lib/index.d.ts",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,html,css,scss}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{css,scss}": "stylelint --fix"
},
"prettier": "@boston-scientific/prettier-config",
"stylelint": {
"extends": [
"@boston-scientific/stylelint-config"
]
},
"eslintConfig": {
"extends": [
"@boston-scientific/eslint-config",
"plugin:storybook/recommended"
]
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@boston-scientific/anatomy-tokens": "^5.0.0-beta.19",
"@boston-scientific/eslint-config": "^0.0.3",
"@boston-scientific/prettier-config": "^1.0.1",
"@boston-scientific/stylelint-config": "^1.1.0",
"@floating-ui/react-dom": "^1.3.0",
"@storybook/addon-a11y": "^7.6.12",
"@storybook/addon-essentials": "^7.6.12",
"@storybook/addon-interactions": "^7.6.12",
"@storybook/addon-links": "^7.6.12",
"@storybook/addon-mdx-gfm": "^7.6.12",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.6.12",
"@storybook/manager-api": "^7.6.12",
"@storybook/react": "^7.6.12",
"@storybook/react-vite": "^7.6.12",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.6.12",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.0.3",
"axios": "^1.7.1",
"chromatic": "^10.7.1",
"eslint": "^8.45.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^13.2.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"rollup-plugin-copy": "^3.4.0",
"sass": "^1.72.0",
"storybook": "^7.6.12",
"stylelint": "^14.15.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0",
"vite-plugin-turbosnap": "^1.0.3"
}
}