-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.3 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
{
"private": true,
"scripts": {
"build": "parcel build src/manifest.json --no-content-hash --no-source-maps --dist-dir distribution --no-cache --detailed-report 0",
"clean": "rm -rf distribution web-ext-artifacts",
"package": "yarn clean && yarn build && web-ext build && zip -r web-ext-artifacts/wd-src.zip src README.md",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"lint:css": "stylelint src/**/*.css",
"lint:js": "xo",
"test": "run-p lint:* build",
"watch": "parcel watch src/manifest.json --dist-dir distribution --no-cache --no-hmr"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version"
],
"xo": {
"envs": [
"browser"
],
"rules": {
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "browser"
}
]
}
},
"stylelint": {
"extends": "stylelint-config-xo"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@sutton-signwriting/font-ttf": "1.4.4",
"binary-variations": "^1.0.2",
"debounce": "^2.0.0",
"fix-newlines-in-json-strings": "^1.0.0",
"furigana": "^0.19.3",
"i": "^0.3.7",
"isbn3": "^1.1.27",
"npm": "^10.4.0",
"react": "^17.0.2",
"react-burger-menu": "^3.0.6",
"react-dom": "^17.0.2",
"react-shadow-dom-retarget-events": "^1.1.0",
"svgo": "^2.8.0",
"ucsur-sitelen-pona": "^1.0.1",
"webextension-polyfill": "^0.8.0",
"wikidata-sdk": "^8.0.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.7.1",
"@parcel/config-webextension": "^2.0.0-rc.0",
"@parcel/transformer-image": "^2.0.0-rc.0",
"@parcel/transformer-yaml": "^2.8.3",
"@types/react": "^17.0.37",
"@types/react-burger-menu": "^2.8.2",
"@types/react-dom": "^17.0.11",
"@types/webextension-polyfill": "^0.8.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"buffer": "^5.7.1",
"cssnano": "^5.0.0",
"eslint": "^8.8.0",
"eslint-plugin-react-hooks": "^4.3.0",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"parcel": "^2.0.0-rc.0",
"parcel-transformer-css-to-string": "^0.9.1",
"path-browserify": "^1.0.1",
"postcss": "^8.0.0",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"stylelint": "^13.13.1",
"stylelint-config-xo": "^0.20.0",
"url": "^0.11.0",
"xo": "^0.44.0"
},
"webExt": {
"sourceDir": "distribution"
}
}