-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.87 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
{
"name": "bulletchat-for-youtube",
"version": "1.3.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"emittery": "^0.7.2",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"tinycolor": "^0.0.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.126",
"@types/jest": "26.0.15",
"@types/lodash": "^4.14.165",
"@types/node": "14.14.8",
"@types/react": "16.9.56",
"@types/react-color": "^3.0.4",
"@types/react-dom": "16.9.9",
"@types/resize-observer-browser": "^0.1.4",
"@types/tinycolor": "^1.1.27",
"@types/uuid": "^8.3.0",
"cross-env": "^7.0.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"node-sass": "^5.0.0",
"prettier": "^2.1.2",
"react-app-rewired": "^2.1.3",
"react-scripts": "4.0.0",
"typescript": "4.0.5"
},
"scripts": {
"start": "react-app-rewired start ",
"build": "react-app-rewired build && node update-manifest.js",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint --fix src/**/*.{ts,tsx}"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"arrowParens": "always",
"jsxBracketSameLine": false,
"jsxSingleQuote": false
},
"eslintConfig": {
"env": {
"browser": true,
"webextensions": true
},
"extends": [
"react-app",
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": "error"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}