-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
57 lines (56 loc) · 1.75 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
{
"name": "useeio-widgets",
"version": "0.1.0",
"description": "A collection of Javascript widgets with HTML integration examples to simplify the use and display of results and data from USEEIO models in web pages.",
"repository": "https://github.com/USEPA/useeio-widgets",
"bugs": {
"url": "https://github.com/USEPA/useeio-widgets/issues",
"email": "[email protected]"
},
"license": "CC0-1.0",
"contributors": [
"Michael Srocka",
"Loren Heyns",
"Yilun Zha",
"Wesley Ingwersen",
"Hui Zhou"
],
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"clean": "node scripts/clean",
"dev": "webpack --config webpack.config.js --mode=development --watch",
"dist": "node scripts/dist",
"download": "node scripts/download",
"server": "npx http-server ./build --cors",
"test": "ts-node ./node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.3",
"@material-ui/styles": "^4.11.4",
"@mui/x-data-grid": "^4.0.1",
"apexcharts": "^3.45.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"useeio": "github:USEPA/useeio.js"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/node": "^20.11.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"ajv": "^8.12.0",
"archiver": "^6.0.1",
"copy-webpack-plugin": "^12.0.1",
"eslint": "^8.56.0",
"http-server": "^14.1.1",
"jasmine": "^5.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}