-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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": "@alpsfinance/brand",
"description": "Simple React UI Library for Alps Finance Brand Resources.",
"version": "0.4.2",
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "start-storybook -p 6006",
"build": "build-storybook",
"chromatic": "npx chromatic --exit-zero-on-changes",
"lint:check": "eslint .",
"lint:fix": "eslint --fix",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write \"**/*.{ts,tsx,json,html}\" .prettierrc --config ./.prettierrc",
"format": "npm run lint:fix && npm run prettier:fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"babel-loader": "^8.2.4",
"chromatic": "^6.5.4",
"eslint": "^8.15.0",
"prettier": "^2.6.2",
"husky": "^7.0.0"
}
}