forked from t3dotgg/Chrometana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.45 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
{
"name": "chrometana",
"description": "Redirect Bing Somewhere Better http://Chrometana.Theo.li",
"author": "Pedro Cerejo",
"version": "4.0.0",
"scripts": {
"start": "parcel manifest.json",
"build": "parcel build manifest.json --no-content-hash --no-source-maps --dist-dir distribution --no-cache --detailed-report 0",
"lint": "run-p lint:*",
"lint-fix": "run-p \"lint:* -- --fix\"",
"lint:css": "stylelint src/**/*.scss",
"lint:js": "xo",
"test": "run-p lint:* build",
"watch": "parcel watch manifest.json --dist-dir distribution --no-cache --no-hmr"
},
"xo": {
"extends": "xo-react",
"envs": [
"browser"
],
"space": true,
"rules": {
"no-negated-condition": "off",
"react/react-in-jsx-scope": "off",
"comma-dangle": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"always"
],
"import/extensions": "off",
"node/file-extension-in-import": [
"error",
"never",
{
".scss": "always"
}
],
"quotes": [
"error",
"double"
],
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "browser"
}
]
}
},
"stylelint": {
"extends": [
"stylelint-config-xo-scss",
"stylelint-config-xo-space"
]
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.15.6",
"@parcel/config-webextension": "^2.0.0-rc.0",
"@parcel/transformer-image": "^2.0.0-rc.0",
"@parcel/transformer-sass": "^2.0.1",
"babel": "^6.23.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.3.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.0-rc.0",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.1.0",
"serialize-javascript": ">=6.0.0",
"style-loader": "^3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-xo": "^0.20.0",
"stylelint-config-xo-scss": "^0.14.0",
"stylelint-config-xo-space": "^0.15.1",
"webpack": "^5.57.1",
"webpack-cli": "^4.8.0",
"xo": "^0.44.0"
},
"dependencies": {
"preact": "^10.5.14",
"webext-options-sync": "^2.0.1",
"webextension-polyfill": "^0.8.0"
},
"webExt": {
"sourceDir": "distribution"
}
}