-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
66 lines (66 loc) · 1.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
{
"name": "webui",
"private": true,
"scripts": {
"start": "meteor run",
"build-docs": "jsdoc -r client imports server tests launcher.js -d docs",
"lint": "npm run lint:check",
"lint:check": "npm --prefix linter/ run lint:check",
"lint:fix": "npm --prefix linter/ run lint:fix",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/runtime": "^7.24.4",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@msgpack/msgpack": "^3.0.0-beta2",
"bootstrap": "^5.3.2",
"chart.js": "^4.4.2",
"chartjs-adapter-dayjs-4": "^1.0.4",
"chartjs-plugin-zoom": "^2.0.1",
"dayjs": "^1.11.10",
"json5": "^2.2.3",
"meteor-node-stubs": "^1.2.10",
"mysql2": "^3.10.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^4.25.0",
"react-dom": "^18.2.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"jsdoc": "^4.0.2"
},
"eslintConfig": {
"extends": [
"yscope/meteor"
]
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"babel": {
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"runtime": "automatic"
}
]
]
}
}