-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.79 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
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
{
"name": "@bbc/audio-orchestrator",
"productName": "Audio Orchestrator",
"description": "Audio Orchestrator is an production tool for prototyping multi-device audio experiences.",
"repository": "https://github.com/bbc/audio-orchestrator",
"version": "0.23.2",
"author": "BBC R&D",
"license": "GPL-3.0-or-later",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build:react-frontend": "(cd react-frontend && webpack --mode production)",
"credits": "node scripts/credits.mjs",
"dev": "concurrently \"npm run dev:react-frontend\" \"NODE_ENV=development electron --inspect=9229 .\"",
"dev:react-frontend": "(cd react-frontend && webpack-dev-server --hot --host 0.0.0.0 --mode development)",
"dist": "((rm -r ./dist || echo '') && npm run credits && cp electron-app/credits.html electron-app/credits2.html && npm run build:react-frontend && electron-builder --config electron-builder.json --mac --win --publish never)",
"lint": "npm run lint:background-tasks && npm run lint:react-frontend && npm run lint:electron-app && npm run lint:logging",
"lint:background-tasks": "cd background-tasks && eslint src test",
"lint:electron-app": "cd electron-app && eslint src",
"lint:logging": "cd logging && eslint src",
"lint:react-frontend": "cd react-frontend && eslint src --ext .jsx",
"postinstall": "electron-builder install-app-deps",
"test": "npm run test:background-tasks",
"test:background-tasks": "(cd background-tasks && node --experimental-vm-modules ../node_modules/jest/bin/jest --watchAll)",
"add-notices": "ESLINT_USE_FLAT_CONFIG=true eslint --config .eslintrc.notice.mjs . --fix"
},
"type": "module",
"main": "electron-app/src/main/main.js",
"imports": {
"#logging": "./logging/src/index.js",
"#background-tasks": "./background-tasks/src/index.js",
"#Components/*": "./react-frontend/src/Components/*",
"#Lib/*": "./react-frontend/src/lib/*",
"#Actions/*": "./react-frontend/src/actions/*"
},
"dependencies": {
"@bbc/audio-orchestration-core": "^0.1.2",
"@bbc/audio-orchestration-template": "^0.1.2",
"@reduxjs/toolkit": "^1.5.0",
"async": "^3.0.1",
"classnames": "^2.2.6",
"electron-store": "^5.1.1",
"events": "^3.1.0",
"ffprobe-client": "^1.1.2",
"finalhandler": "^1.1.2",
"fs-extra": "^7.0.1",
"osc-min": "^1.1.2",
"prop-types": "^15.7.2",
"qrcode": "^1.5.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"react-refresh": "^0.10.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"semver": "^7.3.2",
"semver-compare": "^1.0.0",
"serve-static": "^1.14.1",
"uuid": "^7.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^5.3.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"electron": "33.3.0",
"electron-builder": "^26.0.0-alpha.8",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-notice": "^1.0.0",
"exports-loader": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "30.0.0-alpha.6",
"lefthook": "1.9.2",
"license-checker-rseidelsohn": "^4.4.2",
"mini-css-extract-plugin": "^2.9.2",
"string-replace-loader": "^3.1.0",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}