-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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": "bytez-chrome-extension",
"version": "2.0.0",
"description": "Bytez chrome extension",
"main": "src/index.js",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"mdi-react": "^7.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^2.5.1",
"npm-watch": "^0.7.0",
"prettier": "^2.2.1",
"react-scripts": "^4.0.3",
"typescript": "^3.9.9",
"zip-a-folder": "^0.0.12",
"node-fetch": "^2.6.1"
},
"scripts": {
"lint": "eslint .",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"whitelist": "node generateRules.js",
"watch": "npm-watch",
"semantic": "node updateVersion.js -",
"patch": "npm run whitelist && npm run build && npm run semantic patch",
"minor": "npm run whitelist && npm run build && npm run semantic minor",
"major": "npm run whitelist && npm run build && npm run semantic major"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"sideEffects": false,
"watch": {
"build": {
"patterns": [
"public",
"src"
],
"extensions": "js,jsx,json"
}
}
}