-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 4.24 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
123
124
125
126
127
{
"name": "react-cool-components",
"version": "0.1.1",
"private": false,
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Lorenzo De Francesco",
"url": "https://lory1990.github.io/"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.12.3",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"@mui/material": "^5.2.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"emailjs-com": "^3.2.0",
"formik": "^2.2.9",
"i18next": "^21.2.4",
"i18next-http-backend": "^1.3.1",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-i18next": "^11.12.0",
"react-scripts": "4.0.3",
"react-toastify": "^8.0.3",
"typescript": "^4.5.4"
},
"scripts": {
"build": "yarn clean && rollup -c",
"test": "react-scripts test",
"clean": "rimraf dist",
"build-and-publish": "yarn test && yarn build-complete && npm publish",
"build-complete": "yarn clean && yarn lint && rollup -c",
"build-storybook": "build-storybook -s public",
"build-storybook-test": "cross-env-shell IS_TEST=true build-storybook",
"lint": "yarn eslint src",
"start": "yarn storybook",
"storybook": "start-storybook -p 6006 -s public"
},
"jest": {
"moduleNameMapper": {
"@inputs(.*)$": "<rootDir>/src/inputs$1",
"@buttons(.*)$": "<rootDir>/src/buttons$1",
"@hooks(.*)$": "<rootDir>/src/hooks$1",
"@utils(.*)$": "<rootDir>/src/utils$1"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@date-io/moment": "1.3.13",
"@rollup/plugin-url": "^6.1.0",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-storyshots": "^6.4.9",
"@storybook/addon-storyshots-puppeteer": "^6.4.9",
"@storybook/node-logger": "^6.4.9",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.9",
"@svgr/rollup": "^5.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.2",
"@types/react": "^17.0.10",
"@types/react-color": "^3.0.5",
"@types/react-dom": "^17.0.7",
"@types/react-dropzone": "^5.1.0",
"autoprefixer": "^10.3.1",
"cross-env": "^7.0.3",
"depcheck": "^1.4.2",
"husky": "^7.0.1",
"moment": "^2.29.1",
"node-sass": "^5.0.0",
"paths.macro": "^3.0.1",
"puppeteer": "^10.4.0",
"rollup": "^2.55.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.5.2",
"sass-resources-loader": "^2.2.3",
"storybook-addon-designs": "^6.2.0",
"storybook-vscode-component": "^1.0.8",
"tsconfig-paths-webpack-plugin": "^3.5.1"
}
}