forked from bbc/digital-paper-edit-firebase
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 4.12 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
101
102
103
104
105
106
{
"name": "@pietrop/digital-paper-edit-firebase",
"version": "1.0.0",
"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",
"scripts": {
"start": "run-p --race dev:firebase dev:react",
"firebase:serve": "firebase serve",
"dev:firebase": "firebase serve -p 4000 ",
"dev:firebase:emulator": "firebase emulators:start",
"dev:react": "cross-env REACT_APP_NODE_ENV=development react-scripts start",
"start:dev": "cross-env REACT_APP_NODE_ENV=development react-scripts start",
"start-emu": "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:all": "rimraf build && npm run build && firebase deploy",
"deploy:hosting": "rimraf build && npm run build && firebase deploy -P --only hosting:dj-con-Innovation-dpe-web-poc",
"deploy:staging:hosting": "rimraf build && npm run build && firebase deploy -P staging --only hosting:dj-con-Innovation-dpe-web-poc",
"deploy:dev:hosting": "rimraf build && npm run build && firebase deploy -P dev --only hosting:dj-con-Innovation-dpe-web-poc",
"deploy:prod:hosting": "rimraf build && npm run build && firebase deploy -P prod --only hosting:dj-con-Innovation-dpe-web-poc",
"deploy:functions": "firebase deploy --only functions",
"deploy:functions:createTranscript": "firebase deploy --only functions:createTranscript",
"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"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.5",
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.56",
"@pietrop/aes31-adl-composer": "^1.0.1",
"@pietrop/edl-composer": "^2.0.0",
"@pietrop/fcpx-xml-composer": "^1.0.0",
"array-move": "^2.1.0",
"audition-xml-composer": "^1.0.0-alpha.1",
"bootstrap-css-only": "^4.3.1",
"chroma-js": "^2.0.3",
"css-color-names": "^1.0.1",
"cuid": "^2.1.6",
"docx": "^5.3.0",
"downloadjs": "^1.4.7",
"edl_composer": "^1.0.3",
"express": "^4.17.1",
"firebase": "^7.14.0",
"firebase-admin": "^8.7.0",
"firebase-functions": "^3.11.0",
"firebaseui": "^4.3.0",
"http2": "^3.3.7",
"node-sass": "^4.13.0",
"randomcolor": "^0.5.4",
"react": "^16.10.2",
"react-bootstrap": "^1.0.0-beta.14",
"react-color": "^2.17.1",
"react-dom": "^16.13.0",
"react-fetch-progressbar": "^1.0.0",
"react-firebaseui": "^4.1.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.0.1",
"react-select": "^2.4.3",
"react-sortable-hoc": "^1.9.1",
"recompose": "^0.30.0",
"slate-transcript-editor": "^0.1.2",
"uuid": "^8.3.1",
"videocontext": "^0.53.1",
"zlib": "^1.0.5"
},
"author": "Pietro Passarelli 2020",
"contributors": [
""
],
"bugs": {
"url": "https://github.com/pietrop/digital-paper-edit-firebase/issues"
},
"homepage": "./",
"repository": {
"type": "git",
"url": "git+https://github.com/pietrop/digital-paper-edit-firebase.git"
},
"license": "MIT",
"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-hooks": "^2.5.0",
"gh-pages": "^2.0.1",
"http-proxy-middleware": "^0.20.0",
"npm-run-all": "^4.1.5"
},
"jest": {}
}