-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "react-video-scrubber",
"version": "1.3.1",
"description": "React canvas-enabled video frame scrubber",
"repository": {
"type": "git",
"url": "https://github.com/patrick-s-young/react-video-scrubber.git"
},
"main": "index.js",
"scripts": {
"bundle": "webpack",
"test": "jest",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"check-types": "tsc"
},
"keywords": [],
"author": "Patrick S. Young",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@webpack-cli/serve": "^2.0.1",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.2",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@reduxjs/toolkit": "^1.9.3",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"babel-helpers": "^6.24.1",
"babel-preset-env": "^1.7.0",
"detect-browser": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5"
},
"jestWebpackResolver": {
"silent": true,
"webpackConfig": "webpack.config.js"
}
}