-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.01 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
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
{
"name": "meteor-app",
"private": true,
"scripts": {
"start-dev": "node bin/start.mjs",
"start": "meteor run",
"prestart": "node generate-build-info.js",
"prebuild": "node generate-build-info.js",
"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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@babel/runtime": "^7.27.6",
"@emotion/is-prop-valid": "^1.3.1",
"@mieweb/ui": "^0.2.0",
"@swc/helpers": "^0.5.17",
"ag-grid-community": "^35.1.0",
"ag-grid-react": "^35.1.0",
"axios": "^1.18.0",
"dotenv": "^16.5.0",
"firebase-admin": "^13.0.2",
"framer-motion": "^11.18.2",
"get-port": "^7.1.0",
"git-filter-repo": "^0.0.30",
"html5-qrcode": "^2.3.8",
"ldapjs": "git+https://github.com/mieweb/node-ldapjs.git",
"lucide-react": "^0.469.0",
"meteor-node-stubs": "^1.2.24",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^7.18.2",
"react-router-dom": "^7.18.2",
"readline-sync": "^1.4.10"
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"@meteorjs/rspack": "^1.0.0",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.7.12",
"@rspack/core": "^1.7.1",
"@rspack/plugin-react-refresh": "^1.4.3",
"@tailwindcss/postcss": "^4.1.18",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.23",
"postcss-load-config": "^6.0.1",
"prettier": "^3.8.1",
"react-refresh": "^0.17.0",
"tailwindcss": "^4.1.18"
},
"overrides": {
"axios": "^1.18.0",
"@grpc/grpc-js": "^1.14.4",
"protobufjs": "^7.6.5",
"websocket-driver": "^0.7.5",
"shell-quote": "^1.9.0",
"webpack-dev-server": "^5.2.6",
"ws@>=8.0.0 <8.21.0": "^8.21.0",
"ws@>=7.0.0 <7.5.11": "^7.5.11",
"socket.io-parser": "^4.2.7",
"engine.io": "^6.6.7",
"js-yaml@>=4.0.0": "^4.3.1",
"form-data@>=4.0.0": "^4.0.6",
"form-data@<2.5.6": "^2.5.6",
"fast-uri": "^3.1.5",
"postcss": "^8.5.23",
"brace-expansion": "^1.1.18",
"path-to-regexp@<0.1.13": "~0.1.13",
"body-parser": "^1.20.6",
"qs": "^6.15.2",
"uuid": "^11.1.1",
"http-proxy-middleware@>=0.16.0": "^2.0.10",
"launch-editor": "^2.14.1",
"bn.js@>=5.0.0": "^5.2.3",
"bn.js@<4.12.3": "^4.12.3",
"@remix-run/router": "^1.23.3",
"@tootallnate/once": "^2.0.1"
},
"lint-staged": {
"*.{js,jsx,mjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html}": [
"prettier --write"
]
}
}