-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 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
{
"license": "MIT",
"scripts": {
"archive": "git archive HEAD --output=goodbye-rfc-2822-date-time.tar.gz",
"build": "ts-node build/locale.ts && parcel build src/main.ts",
"clean": "git clean -d --interactive -x",
"fix": "concurrently yarn:fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"lint": "concurrently yarn:lint:*",
"lint:eslint": "eslint --ext .ts .",
"lint:prettier": "prettier --ignore-unknown --check '**/*.{js,jsx,ts,tsx,json,html,css,less,sass,scss,yml,yaml}'",
"lint:tsc": "tsc --noEmit",
"lint:web-ext": "web-ext lint",
"package": "rm -rf dist/ && yarn build --no-source-maps && web-ext build && yarn archive",
"start": "web-ext run",
"watch": "parcel watch src/main.ts"
},
"browserslist": [
"last 2 Chrome version",
"Firefox ESR"
],
"dependencies": {
"dayjs": "^1.11.13"
},
"devDependencies": {
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"concurrently": "^9.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"parcel": "^2.13.3",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"web-ext": "^8.3.0"
}
}