-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.04 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
{
"name": "esales",
"version": "1.0.0",
"main": "app/index.tsx",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.13.14",
"@babel/preset-env": "7.13.12",
"@babel/preset-react": "7.13.13",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.5",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-interactions": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/builder-webpack5": "6.5.9",
"@storybook/manager-webpack5": "6.5.9",
"@storybook/react": "6.5.9",
"@storybook/testing-library": "0.0.13",
"@types/jest": "28.1.6",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"babel-loader": "8.2.5",
"babel-plugin-styled-components": "1.12.0",
"circular-dependency-plugin": "5.2.2",
"clean-webpack-plugin": "4.0.0",
"cross-env": "7.0.3",
"css-loader": "5.2.0",
"dotenv": "16.0.0",
"eslint": "8.12.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.1.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-mocha": "10.0.3",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"fork-ts-checker-notifier-webpack-plugin": "6.0.0",
"fork-ts-checker-webpack-plugin": "7.2.3",
"html-webpack-plugin": "5.3.1",
"husky": "8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"mini-css-extract-plugin": "2.6.0",
"prettier": "2.6.0",
"react-refresh-typescript": "2.0.3",
"style-loader": "2.0.0",
"thread-loader": "^3.0.4",
"ts-jest": "28.0.7",
"ts-loader": "8.1.0",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.2.3",
"typescript-plugin-css-modules": "3.4.0",
"webpack": "5.72.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.8.1",
"webpack-merge": "5.8.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./webpack/webpack-dev.config.js",
"build": "webpack --color --config webpack/webpack-prod.config.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx . --color",
"lint-fix": "eslint --ext .js,.jsx,.ts,.tsx --fix .",
"prettier": "prettier --check \"**/*.{js,json,md,ts,tsx,yml}\"",
"prettier-fix": "prettier --check --write \"**/*.{js,json,md,ts,tsx,yml}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --quiet --cache --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write"
]
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "3.13.0",
"styled-components": "5.2.2"
},
"resolutions": {
"styled-components": "5"
}
}