This repository has been archived by the owner on Feb 26, 2022. It is now read-only.
forked from pietrop/slate-transcript-editor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.41 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
{
"name": "slate-transcript-editor",
"version": "0.1.1",
"description": "A React component to make correcting automated transcriptions of audio and video easier and faster. Using the Slate Editor",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook -o .out",
"deploy:ghpages": "npm run build-storybook && cp .nojekyll .out/.nojekyll && gh-pages -d .out",
"build:component": "cross-env BABEL_ENV=production babel src -d dist && /bin/cp -rf package.json dist && /bin/cp -rf README.md dist",
"build:transcript-editor": "rollup --config",
"publish:public": "npm run build:component && npm publish dist --access public",
"publish:dry:run": "npm run build:component && npm publish dist --dry-run",
"lint": "prettier --write \"**/*.js\""
},
"keywords": [],
"author": "Pietro Passarelli",
"contributors": [
{
"name": "Pietro Passarelli",
"url": "https://github.com/pietrop"
}
],
"bugs": {
"url": "https://github.com/pietrop/slate-transcript-editor/issues"
},
"homepage": "https://github.com/pietrop/slate-transcript-editor",
"repository": {
"type": "git",
"url": "git+https://github.com/pietrop/slate-transcript-editor.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-react": "^7.9.4",
"@babel/runtime-corejs3": "^7.12.5",
"@rollup/plugin-babel": "^5.2.2",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"babel-loader": "^8.1.0",
"babel-plugin-react-require": "^3.1.3",
"babel-plugin-transform-react-jsx": "^6.24.1",
"bootstrap-css-only": "^4.4.1",
"cross-env": "^7.0.2",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.12.7",
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.5",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@storybook/addon-storysource": "^5.3.18",
"align-diarized-text": "^1.0.8",
"bootstrap": "^4.5.3",
"core-js": "^3.6.5",
"d3-format": "^2.0.0",
"fp-ts": "^2.9.1",
"less": "^4.0.0",
"path-browserify": "^0.0.1",
"postcss": "^8.2.1",
"prop-types": "^15.7.2",
"react-bootstrap": "^1.0.1",
"rollup": "^2.35.1",
"rollup-plugin-esbuild": "^2.6.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sbd": "^1.0.18",
"slate": "^0.59.0",
"slate-history": "^0.59.0",
"slate-react": "^0.59.0",
"smpte-timecode": "^1.2.3",
"stt-align-node": "^1.1.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}