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
|
{
"name": "fedidag-client",
"version": "0.0.1",
"scripts": {
"start": "API_PREFIX=http://localhost:3000 webpack serve --host 0.0.0.0",
"build": "webpack --config ./webpack.config.js --mode production --progress"
},
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"decoratorsBeforeExport": false
}
],
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"pragmaFrag": "Fragment"
}
]
]
},
"dependencies": {
"classnames": "^2.2.6",
"color-hash": "^1.0.3",
"core-js": "^3.8.3",
"date-fns": "^2.16.1",
"jsonld": "^3.3.0",
"preact": "^10.5.12",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^7.0.0",
"html-webpack-plugin": "^4.5.0",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
}
}
|