-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
{
"name": "meteor-recorder",
"version": "1.5.1",
"description": "Video Recorder application that captures IP Web Cams RTSP streams",
"license": "MIT",
"repository": "https://github.com/boonya/meteor-recorder",
"scripts": {
"start": "meteor run --exclude-archs \"web.browser.legacy, web.cordova\"",
"test": "jest",
"lint": "eslint .",
"test:meteor": "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",
"build": "meteor build ."
},
"engines": {
"node": "14.19.3",
"npm": "6.14.17"
},
"dependencies": {
"@babel/runtime": "^7.20.7",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/pangolin": "^4.5.9",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "5.0.0-alpha.115",
"@mui/material": "^5.11.4",
"meteor-node-stubs": "^1.2.5",
"notistack": "^2.0.8",
"onvif": "^0.6.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.0",
"react-router-dom": "^6.6.2",
"rtsp-video-recorder": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-config-bluedrop": "^9.0.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.6.0",
"eslint-plugin-unicorn": "^45.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prop-types": "^15.8.1"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
}
}