-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.88 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
{
"name": "react-foundation",
"version": "1.3.0",
"author": "Real_Marshal",
"browserslist": [
"last 2 years"
],
"main": "src/index.tsx",
"packageManager": "[email protected]",
"private": true,
"sideEffects": false,
"size-limit": [
{
"path": "dist/*.js"
}
],
"scripts": {
"dev": "webpack serve --open --mode development",
"build": "webpack",
"build:analyze": "webpack --env analyze",
"build:size": "yarn build && yarn size-limit",
"build:storybook": "build-storybook",
"clear:cache": "rimraf .cache",
"clear:sbcache": "rimraf .cache/storybook",
"test": "jest",
"test:coverage": "jest --coverage",
"postinstall": "husky install",
"lint": "eslint . --cache --cache-location .cache/eslint --cache-strategy content",
"lint:nocache": "eslint .",
"format": "prettier --check ./src",
"storybook": "start-storybook -p 6006",
"commit": "gacp --no-add --emoji emoji"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@emotion/babel-plugin": "^11.10.2",
"@emotion/jest": "^11.10.0",
"@mdx-js/react": "^1.6.22",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@size-limit/file": "^8.0.1",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@storybook/testing-react": "^1.3.0",
"@testing-library/dom": "^8.18.0",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/rimraf": "^3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"concurrently": "^7.3.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv-defaults": "^5.0.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-react": "^7.31.6",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.6.1",
"eslint-plugin-unicorn": "^43.0.2",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"gacp": "^3.0.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"jest-extended": "^3.2.3",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"react-refresh": "^0.14.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"size-limit": "^8.0.1",
"style-loader": "^3.3.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@reduxjs/toolkit": "^1.8.5",
"core-js": "^3.25.0",
"modern-normalize": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
}
}