-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.96 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.96 KB
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
{
"name": "editor-demo",
"version": "1.0.0",
"description": "",
"main": "''",
"scripts": {
"start": "npm-run-all --parallel noserver storybook",
"noserver": "webpack-dev-server --progress --profile",
"build": "cross-env NODE_ENV=production webpack --config webpack.production.js --progress --profile",
"lint": "eslint --ext js --ext jsx src || exit 0",
"storybook": "storybook dev -h local.forio.com -p 6006 --ci",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": ""
},
"browserslist": [
"> 1%",
"last 2 opera versions"
],
"author": "Forio",
"dependencies": {
"@babel/runtime": "^7.23.6",
"epicenter-libs": "^3.23.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-router": "^6.21.0",
"react-router-dom": "^6.21.0",
"redux": "^5.0.0",
"redux-thunk": "^3.1.0",
"reselect": "^5.0.1",
"webpack": "^5.89.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
"@babel/plugin-transform-numeric-separator": "^7.23.4",
"@babel/plugin-transform-optional-chaining": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@storybook/addon-actions": "^7.6.4",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "^7.6.4",
"@storybook/testing-library": "^0.2.2",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.4",
"mini-css-extract-plugin": "^2.7.6",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.3.3",
"prettier": "^3.1.1",
"react-prop-types": "^0.4.0",
"react-refresh": "^0.14.0",
"redux-logger": "^3.0.6",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"storybook": "^7.6.4",
"style-loader": "^3.3.3",
"url-loader": "^4.1.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}