-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
{
"name": "youtube-timestamp-comments",
"version": "0.11.0",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/",
"static": "mkdir -p dist && cp -r static/* dist/",
"build": "npm run clean && npm run static && npm run build:js",
"build:js": "$npm_package_config_build --no-source-maps",
"dev": "npm run clean && npm run static && npm run dev:js",
"dev:js": "NODE_ENV=development $npm_package_config_build --no-optimize",
"archive": "npm run build && cd dist && zip youtube-timestamp-comments * -r",
"watch": "nodemon",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:prettier": "prettier . --check",
"fmt": "run-s fmt:prettier fmt:eslint",
"fmt:eslint": "npm run lint:eslint -- --fix",
"fmt:prettier": "npm run lint:prettier -- --write"
},
"config": {
"build": "parcel build src/page_action/pageAction.tsx src/background/background.ts src/content_scripts/contentScript.ts --dist-dir dist/js"
},
"nodemonConfig": {
"ext": "html,css,js,json,ts,tsx",
"exec": "npm run dev",
"watch": [
"src",
"static"
]
},
"dependencies": {
"@foo-x/react-container": "^0.1.1",
"@foo-x/react-tea": "^0.2.1",
"@fortawesome/fontawesome-free": "^6.5.1",
"async-lock": "^1.4.1",
"bulma": "^1.0.2",
"bulma-divider": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@types/async-lock": "^1.4.2",
"@types/chrome": "^0.0.263",
"@types/node": "^20.11.30",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.22",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"process": "^0.11.10",
"typescript": "^5.4.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
},
"alias": {
"src": "./src",
"pa": "./src/page_action"
}
}