-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
100 lines (100 loc) · 3.18 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
{
"name": "@avantstay/avantstay-ui",
"version": "9.0.0",
"homepage": "https://github.com/avantstay/avantstay-ui",
"bugs": "https://github.com/avantstay/avantstay-ui/issues",
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/avantstay/avantstay-ui.git"
},
"scripts": {
"build": "shx rm -rf lib && webpack --progress",
"build-storybook": "build-storybook",
"clear-cache": "tsc clear cache",
"eslint:all": "eslint --ext .ts --ext .tsx src",
"eslint:fix": "eslint --ext .ts --ext .tsx --fix src",
"prepublishOnly": "yarn build",
"prettier:all": "prettier --check src",
"prettier:fix": "prettier --write src",
"start": "start-storybook -p 6006",
"watch": "webpack --watch",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"supports-webp-sync": "^1.1.1",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@types/react-router-dom": "^5.1.5",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"date-fns": "^1.30.1",
"is-mobile": "^2.0.0",
"keycode": "^2.2.0",
"lodash": "^4.17.21",
"query-string": "^6.12.1",
"react-renderif-hoc": "^0.0.1",
"react-router-dom": "^5.2.0",
"react-uid": "^2.3.1",
"resize-observer-polyfill": "^1.5.1",
"tinycolor2": "^1.4.2",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-centered": "^5.3.21",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-storysource": "^6.3.12",
"@storybook/addons": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/classnames": "^2.2.7",
"@types/date-fns": "^2.6.0",
"@types/is-mobile": "^2.1.4",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/storybook__addon-actions": "^5.2.1",
"@types/storybook__addon-centered": "^5.2.1",
"@types/storybook__addon-knobs": "^5.2.1",
"@types/storybook__addon-links": "^5.2.1",
"@types/storybook__react": "^5.2.1",
"@types/tinycolor2": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"emotion-theming": "^10.0.27",
"eslint": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"react": "^16.14.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.14.0",
"shx": "^0.3.2",
"ts-loader": "^7.0.5",
"typescript": "^4.4.4"
},
"private": false,
"publishConfig": {
"access": "public",
"@avantstay:registry": "https://registry.npmjs.org/"
}
}