-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
100 lines (100 loc) · 3.3 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
98
99
100
{
"name": "@bbc/digital-paper-edit-client",
"version": "1.2.5",
"description": "Digital paper edit application, using transcriptions from automated STT, to do text based video editing on audio and video interviews. Modular architecture with - React - Express - Electron - Adobe CEP",
"main": "index.js",
"dependencies": {
"@bbc/aes31-adl-composer": "^1.0.1",
"@bbc/digital-paper-edit-react-components": "^1.3.2",
"@bbc/fcpx-xml-composer": "^1.0.0",
"@bbc/react-transcript-editor": "^1.4.0",
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.5",
"array-move": "^2.1.0",
"bootstrap-css-only": "^4.3.1",
"chroma-js": "^2.0.3",
"css-color-names": "^1.0.1",
"cuid": "^2.1.6",
"downloadjs": "^1.4.7",
"edl_composer": "^1.0.3",
"express": "^4.17.1",
"node-sass": "^4.13.0",
"randomcolor": "^0.5.4",
"react-bootstrap": "^1.0.0-beta.14",
"react-color": "^2.17.1",
"react-dom": "^16.10.2",
"react-fetch-progressbar": "^1.0.0",
"react-router-bootstrap": "^0.24.4",
"react-scripts": "^3.3.0",
"react-select": "^2.4.3",
"react-sortable-hoc": "^1.9.1",
"react-transcript-editor": "^1.3.1-alpha.3",
"videocontext": "^0.53.1"
},
"author": "Pietro Passarelli CC0 BBC 2019",
"contributors": [
""
],
"bugs": {
"url": "https://github.com/bbc/digital-paper-edit-client/issues"
},
"homepage": "./",
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/digital-paper-edit-client.git"
},
"license": "MIT",
"scripts": {
"start": "node server.js",
"start:dev": "cross-env REACT_APP_NODE_ENV=development react-scripts start",
"start:demo": "cross-env REACT_APP_NODE_ENV=demo react-scripts start",
"build": "react-scripts --max-old-space-size=4096 build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean:cache": "npm cache clean --force",
"deploy:ghpages": "rimraf build && cross-env REACT_APP_NODE_ENV=demo npm run build && gh-pages -d build",
"publish:prep": "npm run build && cp package.json ./build/package.json && cp README.md ./build/README.md && rimraf ./build/db",
"publish:public": "npm run publish:prep && npm publish build --access public",
"spec": "speculate --name=digital-paper-edit-client --release ${BUILD_NUMBER}"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@react-mock/fetch": "^0.3.0",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.3.0",
"babel-jest": "^24.9.0",
"cross-env": "^5.2.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"gh-pages": "^2.0.1",
"react": "^16.12.0",
"react-router-dom": "^5.1.2",
"speculate": "^2.0.0"
},
"spec": {
"prune": false,
"requires": [
"cloud-httpd24-ssl-services-devs-staff"
],
"buildRequires": [
"python"
],
"executable": [
"./bake-scripts/*"
],
"post": [
"mkdir -p /etc/bake-scripts/digital-paper-edit-client",
"cp -rf /usr/lib/digital-paper-edit-client/bake-scripts/* /etc/bake-scripts/digital-paper-edit-client/"
]
},
"jest": {}
}