forked from bbc/react-transcript-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.26 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@bbc/react-transcript-editor",
"description": "A React component to make transcribing audio and video easier and faster.",
"version": "1.4.4",
"keywords": [
"transcript",
"transcriptions",
"react",
"speech",
"speech to text",
"textAV"
],
"main": "index.js",
"scripts": {
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"test": "jest",
"test:watch": "jest --watchAll",
"test:ci": "jest --ci",
"lint": "eslint --ignore-path .eslintignore .",
"lint:fix": "eslint --ignore-path .eslintignore . --fix",
"lint:fix-styles": "prettier-stylelint --write 'packages/**/*.{css,scss}'",
"build:component": "webpack --config webpack.config.js",
"build:storybook": "rimraf build && build-storybook -c .storybook -o build",
"build:storybook:serve": "npx serve build",
"deploy:ghpages": "rimraf build && npm run build:storybook && gh-pages -d build",
"pre:publish": "npm run build:component && /bin/cp -rf package.json dist && /bin/cp -rf README.md dist",
"publish:public": "npm run pre:publish && npm publish dist --access public",
"publish:dry:run": "npm publish --dry-run"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.5",
"babel-polyfill": "^6.26.0",
"difflib": "^0.2.4",
"docx": "^4.7.1",
"draft-js": "^0.10.5",
"everpolate": "0.0.3",
"mousetrap": "1.5.2",
"number-to-words": "^1.2.4",
"prop-types": "^15.6.2",
"react-fast-compare": "^2.0.4",
"react-keyboard-shortcuts": "^1.1.3",
"react-simple-tooltip": "^2.6.1",
"sbd": "^1.0.15",
"smpte-timecode": "^1.2.3"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-a11y": "^5.2.2",
"@storybook/addon-actions": "^5.2.2",
"@storybook/addon-knobs": "^5.2.2",
"@storybook/addon-links": "^5.2.2",
"@storybook/addon-viewport": "^5.2.2",
"@storybook/addons": "^5.2.2",
"@storybook/react": "^5.2.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-minify": "^0.5.1",
"css-loader": "^2.1.1",
"enzyme": "^3.10.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.16.0",
"gh-pages": "^2.1.1",
"husky": "^1.1.3",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.14.1",
"prettier-stylelint": "^0.4.2",
"react-testing-library": "^5.2.3",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.7.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"stylelint-config-standard": "^18.3.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"why-did-you-update": "^1.0.6"
},
"contributors": [
{
"name": "Pietro Passarelli",
"email": "[email protected]",
"url": "https://github.com/pietrop"
},
{
"name": "James Dooley",
"email": "[email protected]",
"url": "https://github.com/jamesdools"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bbc/react-transcript-editor/issues"
},
"homepage": "https://github.com/bbc/react-transcript-editor",
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/react-transcript-editor.git"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}