-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.8 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
{
"name": "visorepbd",
"version": "2.6.0",
"description": "Web panel for the epbdcalc library",
"repository": {
"type": "git",
"url": "https://github.com/energiacte/visorepbd.git"
},
"bugs": {
"url": "https://github.com/energiacte/visorepbd/issues"
},
"homepage": "https://github.com/energiacte/visorepbd#README.md",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"stats": "webpack --profile --json > stats.json",
"statsprod": "NODE_ENV=production webpack -p --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer stats.json build",
"clean": "rm -rf build/",
"buildprod": "NODE_ENV=production webpack --progress --colors -p",
"builddev": "NODE_ENV=development webpack --progress --colors -d --watch",
"webpack-server": "webpack-dev-server --hot --inline --colors --history-api-fallback",
"web-server": "http-server -p 3000 ./build",
"prodserver": "npm run web-server | NODE_ENV=production webpack --progress --colors -p --watch",
"bs3": "rm .bootstraprc && cp node_modules/bootstrap-loader/.bootstraprc-3-default .bootstraprc",
"lint": "eslint --ignore-pattern build/*.js --ext .js,.jsx app/",
"start": "npm run webpack-server",
"deploy": "NODE_ENV=production webpack -p"
},
"keywords": [
"energy",
"buildings",
"CTE",
"energía",
"edificios"
],
"author": "Rafael Villar Burke <[email protected]>",
"license": "MIT",
"browserslist": [
"last 4 versions",
"> 1%",
"maintained node versions",
"not dead"
],
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-json-strings": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"cssnano": "^5.0.6",
"eslint": "^7.30.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-sorting": "^0.4.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"http-server": "^0.12.3",
"imagemin": "^7.0.1",
"img-loader": "^3.0.2",
"imports-loader": "^1.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-libs-browser": "^2.2.1",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"postcss": "^8.3.5",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.3.0",
"postcss-preset-env": "^6.7.0",
"react-dev-utils": "^10.2.1",
"react-hot-loader": "^4.13.0",
"resolve-url-loader": "^3.1.4",
"sass-loader": "^8.0.2",
"source-map-loader": "^1.1.3",
"style-loader": "^1.3.0",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.2",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^2.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"bootstrap": "^4.6.0",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"reselect": "^4.0.0",
"sanitize-filename": "1.6.3",
"wasm-cteepbd": "0.6.0"
}
}