-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.2 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
{
"name": "envolventecte",
"version": "26.03.0",
"description": "Thermal envelope indicators for energy regulations compliance (CTE DB-HE, spanish building regulations)",
"author": "Rafael Villar Burke <pachi@rvburke.com> (http://www.rvburke.com)",
"contributors": [
"Daniel Jiménez González <danielj@ietcc.csic.es>",
"Marta Sorribes Gil <msorribes@ietcc.csic.es>"
],
"license": "MIT",
"private": true,
"type": "module",
"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"
],
"devDependencies": {
"@eslint/js": "^9.39.4",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "^7.37.5",
"gh-pages": "^6.2.0",
"globals": "16.3.0",
"vite": "^8.0.3",
"vite-plugin-wasm": "^3.6.0"
},
"dependencies": {
"ag-grid-community": "^35.2",
"ag-grid-react": "^35.2",
"bootstrap": "^5.3.8",
"d3": "^7.9.0",
"mobx": "^6.15.0",
"mobx-react": "^9.2.1",
"react": "19.2.4",
"react-bootstrap": "^2.10.10",
"react-dom": "19.2.4",
"react-dropzone": "^15.0.0",
"react-router": "^7.14.0",
"react-router-bootstrap": "^0.26.3",
"soljs": "^6.0.0",
"three": "0.183.2",
"tweakpane": "^4.0.5",
"wasm-envolventecte": "file:./wasm/pkg"
},
"scripts": {
"prebuild": "node -p \"'export const APP_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.js",
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"predeploy": "VITE_BASE=/envolventecte/ vite 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"
]
}