forked from bbc/digital-paper-edit-client
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 3.04 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
{
"name": "@pietrop/digital-paper-edit-client",
"version": "1.9.3",
"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": "npm run start:dev",
"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",
"publish:dry:run": "npm run publish:prep && npm publish ./build --dry-run"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.5",
"@material-ui/core": "^4.9.14",
"@material-ui/lab": "^4.0.0-alpha.53",
"@pietrop/aes31-adl-composer": "^1.0.1",
"@pietrop/digital-paper-edit-storybook": "^1.3.3",
"@pietrop/edl-composer": "^2.0.0",
"@pietrop/fcpx-xml-composer": "^1.0.0",
"array-move": "^2.1.0",
"audition-xml-composer": "^1.0.0",
"bootstrap-css-only": "^4.3.1",
"bootswatch": "^4.4.1",
"chroma-js": "^2.0.3",
"css-color-names": "^1.0.1",
"cuid": "^2.1.6",
"docx": "^5.0.2",
"downloadjs": "^1.4.7",
"express": "^4.17.1",
"install": "^0.13.0",
"node-sass": "^4.13.0",
"npm": "^7.5.6",
"randomcolor": "^0.5.4",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-color": "^2.17.1",
"react-dom": "^16.12.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"react-select": "^2.4.3",
"react-sortable-hoc": "^1.9.1",
"slate-transcript-editor": "^0.1.6-alpha.16",
"videocontext": "^0.53.1"
},
"author": "Pietro Passarelli CC0 2019",
"contributors": [
""
],
"bugs": {
"url": "https://github.com/pietrop/digital-paper-edit-client/issues"
},
"homepage": "./",
"repository": {
"type": "git",
"url": "git+https://github.com/pietrop/digital-paper-edit-client.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": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"gh-pages": "^2.0.1"
},
"jest": {}
}