-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 4.02 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
118
119
120
121
122
{
"name": "@hipo/react-ui-toolkit",
"version": "1.1.2",
"description": "Bakers Studio's React based UI toolkit.",
"main": "dist/index.js",
"scripts": {
"dev": "./node_modules/.bin/rollup -c -w",
"build": "npm run prettify && ./node_modules/.bin/rollup -c",
"test": "./node_modules/.bin/jest",
"test:watch": "npm t -- --watch",
"storybook": "./node_modules/.bin/start-storybook -p 6006",
"storybook:build": "./node_modules/.bin/build-storybook -o ./public",
"type-check": "echo \"type-checking...\" && ./node_modules/.bin/tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"eslint": "./node_modules/.bin/eslint --ext .jsx,.js,.tsx,.ts src/",
"eslint:fix": "./node_modules/.bin/eslint --fix --ext .jsx,.js,.tsx,.ts src/",
"stylelint": "./node_modules/.bin/stylelint \"src/**/*.{css,scss}\"",
"stylelint:fix": "npm run stylelint -- --fix",
"prettify": "./node_modules/.bin/prettier --config ./.prettierrc.js --write \"src/**/*.{ts,tsx}\" \"stories/**/*.{ts,tsx}\"",
"lint:fix": "npm run stylelint:fix && npm run eslint:fix",
"lint": "npm run stylelint && npm run eslint",
"check-package-updates": "npx npm-check-updates",
"prepare": "husky install"
},
"engines": {
"node": "18.0.0",
"npm": "8.6.0"
},
"keywords": [
"ui",
"react"
],
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint"
],
"src/**/*.scss": [
"stylelint"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.10.1",
"@babel/plugin-proposal-optional-chaining": "7.10.1",
"@babel/preset-typescript": "7.10.1",
"@hipo/eslint-config-base": "4.1.1",
"@hipo/eslint-config-react": "2.1.0",
"@hipo/eslint-config-typescript": "1.0.1",
"@hipo/stylelint-config-base": "3.2.0",
"@rollup/plugin-terser": "0.4.0",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/addons": "6.5.16",
"@storybook/react": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "2.3.0",
"@types/jest": "26.0.23",
"@types/jest-axe": "3.5.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-test-renderer": "18.0.0",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"axe-core": "4.2.0",
"babel-loader": "9.1.3",
"css-loader": "5.2.4",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.2",
"eslint-plugin-jest-dom": "3.9.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "4.6.0",
"fork-ts-checker-webpack-plugin": "4.1.6",
"husky": "8.0.3",
"jest": "29.0.0",
"jest-axe": "4.1.0",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-svg-loader": "3.0.3",
"react-test-renderer": "18.2.0",
"rollup": "3.18.0",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-react-svg": "3.0.3",
"rollup-plugin-stylelint": "1.0.0",
"rollup-plugin-typescript2": "0.34.1",
"sass": "1.58.3",
"sass-loader": "8.0.2",
"style-loader": "1.2.1",
"stylelint": "14.5.1",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.0.1",
"ts-jest": "29.0.5",
"ts-loader": "7.0.5",
"typescript": "4.9.5"
},
"resolutions": {
"react-docgen-typescript": "2.2.2"
},
"dependencies": {
"@storybook/builder-webpack5": "^6.5.16",
"classnames": "2.3.2",
"date-fns": "2.29.3",
"date-fns-tz": "2.0.0",
"react-textarea-autosize": "8.4.0",
"uuid": "9.0.0"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0"
}
}