-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "chrome-extension-boilerplate-react",
"version": "1.0.0",
"description": "Filter Youtube videos by length of time when searching.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lxieyang/chrome-extension-boilerplate-react.git"
},
"scripts": {
"build": "node utils/build.js",
"start": "node utils/webserver.js",
"prettier": "prettier --write '**/*.{js,jsx,css,html}'"
},
"dependencies": {
"@hot-loader/react-dom": "^16.13.0",
"@types/chrome": "0.0.104",
"@types/react": "^16.9.26",
"react": "^16.13.1",
"react-bulma-components": "^3.2.0",
"react-dom": "^16.13.1",
"react-hook-form": "^5.7.2",
"react-hot-loader": "^4.12.20",
"react-html-parser": "^2.0.2",
"react-select": "^3.1.0",
"react-toastify": "^6.0.4",
"react-toggle": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "^4.0.2",
"prettier": "^2.0.2",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"write-file-webpack-plugin": "^4.5.1"
}
}