forked from bedrockio/bedrock-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.21 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
{
"name": "bedrock-web",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"start": "node ./serve/dev",
"static": "node ./serve/static",
"lint": "eslint",
"test": "jest",
"generate": "cd ../../generator && yarn install && yarn generate",
"postinstall": "cd serve && yarn install"
},
"dependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@bedrockio/config": "^2.2.2",
"@bedrockio/logger": "^1.0.5",
"@draft-js-plugins/alignment": "^5.0.3",
"@draft-js-plugins/anchor": "^4.2.0",
"@draft-js-plugins/drag-n-drop": "^4.2.2",
"@draft-js-plugins/editor": "^4.1.3",
"@draft-js-plugins/focus": "^4.1.3",
"@draft-js-plugins/image": "^4.1.3",
"@draft-js-plugins/mention": "^5.2.1",
"@draft-js-plugins/resizeable": "^5.0.3",
"@hot-loader/react-dom": "^17.0.2",
"@mdx-js/loader": "^2.2.1",
"@sentry/browser": "^7.16.0",
"@simplewebauthn/browser": "^8.3.4",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.15",
"date-fns": "^2.29.3",
"draft-js": "^0.11.7",
"favicons": "^7.0.1",
"favicons-webpack-plugin": "^6.0.0-alpha.1",
"google-map-react": "^2.2.0",
"hast-util-sanitize": "^4.0.0",
"hast-util-to-mdast": "^8.4.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"intl-tel-input": "^17.0.19",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prop-types": "^15.8.1",
"qr.js": "^0.0.0",
"react": "^18.3.1",
"react-day-picker": "^8.3.6",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-helmet-async": "^1.3.0",
"react-hot-loader": "^4.13.0",
"react-markdown": "^8.0.3",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"semantic-ui-react": "^2.1.3",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-hot-middleware": "^2.25.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@bedrockio/prettier-config": "^1.0.2",
"@testing-library/dom": "^9.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.4.3",
"eslint": "^8.33.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-bedrock": "^1.0.25",
"eslint-plugin-mdx": "^1.17.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.5.0",
"node-mocks-http": "^1.8.1",
"prettier": "^2.8.1",
"webpack-bundle-analyzer": "^4.5.0"
},
"volta": {
"node": "20.12.2",
"yarn": "1.22.19"
},
"prettier": "@bedrockio/prettier-config"
}