-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.46 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
{
"name": "envolventecte",
"version": "22.10.0",
"description": "Thermal envelope indicators for energy regulations compliance (CTE DB-HE, spanish building regulations)",
"author": "Rafael Villar Burke <[email protected]> (http://www.rvburke.com)",
"contributors": [
"Daniel Jiménez González <[email protected]>",
"Marta Sorribes Gil <[email protected]>"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/pachi/envolventecte.git"
},
"bugs": {
"url": "https://github.com/pachi/envolventecte/issues"
},
"homepage": "https://pachi.github.io/envolventecte",
"keywords": [
"energy",
"buildings",
"CTE",
"DB-HE",
"NZEB",
"energía",
"edificios",
"envolvente térmica",
"solar",
"sun"
],
"overrides": {
"react-error-overlay": "6.0.9"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx": "^0.1.0",
"gh-pages": "^4.0.0",
"raw-loader": "^4.0.2",
"react-scripts": "^4.0.3",
"url-parse": "^1.5.10"
},
"dependencies": {
"bootstrap": "^5.2.2",
"d3": "^7.6.1",
"mobx": "^6.6.2",
"mobx-react": "^7.5.3",
"react": "^17.0.2",
"react-app-rewired": "^2.2.1",
"react-bootstrap": "^2.5.0",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-editor": "^1.4.0",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.3",
"react-router": "^6.4.2",
"react-router-bootstrap": "^0.26.2",
"react-router-dom": "^6.4.2",
"soljs": "^6.0.0",
"three": "^0.140.2",
"tweakpane": "^3.1.0",
"wasm-envolventecte": "file:./wasm/pkg",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"prebuild": "node -p \"'export const APP_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.js",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "npx gh-pages -d build",
"buildwasm": "cd wasm && wasm-pack build",
"buildwasmdebug": "cd wasm && wasm-pack build -- --features console_log",
"publishwasm": "cd wasm && wasm-pack publish"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}