forked from alexanderpono/bricks-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.11 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
{
"name": "bricks-runner",
"version": "1.0.0",
"description": "bricks-runner",
"main": "src/index.tsx",
"scripts": {
"test": "jest",
"build": "webpack --node-env=production",
"build-dev": "webpack --node-env=development",
"dev": "webpack serve --node-env=development",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"ts-check": "npx tsc --skipLibCheck"
},
"keywords": [],
"author": "Alexander Ponomarenko",
"license": "ISC",
"dependencies": {
"html-react-parser": "^4.2.1",
"react-redux": "^8.1.1",
"redux-actions": "2.6.5",
"redux-devtools-extension": "2.13.9",
"redux-saga": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@storybook/addon-essentials": "^7.0.23",
"@storybook/addon-interactions": "^7.0.23",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^7.0.23",
"@storybook/blocks": "^7.0.23",
"@storybook/react": "^7.0.23",
"@storybook/react-webpack5": "^7.0.23",
"@storybook/testing-library": "^0.0.14-next.2",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/classnames": "2.2.11",
"@types/jest": "^29.5.2",
"@types/jquery": "^3.5.16",
"@types/node": "^20.4.1",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.6",
"@types/redux-actions": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"classnames": "^2.3.2",
"compression-webpack-plugin": "^9.1.2",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"css-modules-typescript-loader": "^4.0.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.12",
"faker": "^5.5.3",
"file-loader": "6.2.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.5.0",
"jest-html-reporter": "^3.10.1",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"storybook": "^7.0.23",
"style-loader": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1",
"url-loader": "4.1.1",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
}
}