-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.58 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "web-activity-plugin",
"version": "0.7.3",
"description": "Browser time tracking extension",
"private": true,
"scripts": {
"test:watch": "jest --watch",
"test": "jest",
"lint": "npm run eslint",
"check:ts": "tsc --noEmit",
"eslint": "eslint -c eslint.config.mjs",
"build": "npm test && npm run lint && npm run build:prod",
"build:prod": "webpack --mode=production",
"start": "webpack --mode=development --watch",
"prepare": "husky install",
"release": "node ./tools/release.js",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"preversion": "npm test && npm run lint",
"version": "npm run release && git add .",
"postversion": "git push && git push --tags",
"prettier:check": "prettier ./src --check --cache --ignore-path .gitignore",
"prettier:write": "prettier ./src --write --ignore-unknown --ignore-path .gitignore",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"ci:lint": "npm run lint",
"ci:test": "npm run test",
"ci:build": "npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PsychoSanchez/web-activity-plugin.git"
},
"keywords": [
"extension",
"time",
"tracker"
],
"author": "Aronov Aleksandr",
"license": "GPL3",
"bugs": {
"url": "https://github.com/PsychoSanchez/web-activity-plugin/issues"
},
"homepage": "https://github.com/PsychoSanchez/web-activity-plugin#readme",
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-interactions": "^8.4.0",
"@storybook/addon-onboarding": "^8.4.0",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-webpack5": "^8.4.0",
"@storybook/test": "^8.4.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/chart.js": "^2.9.41",
"@types/chrome": "^0.0.203",
"@types/debounce": "^1.2.0",
"@types/jest": "^29.2.3",
"@types/react": "^17.0.5",
"@types/react-datepicker": "^3.1.8",
"@types/react-dom": "^17.0.5",
"@types/react-measure": "^2.0.12",
"@types/throttle": "^1.0.0",
"@types/throttle-debounce": "^2.1.0",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"autoprefixer": "^10.4.12",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "7.1.2",
"eslint": "9.13.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-storybook": "^0.10.1",
"husky": "^8.0.0",
"jest": "29.7.0",
"mocha": "10.8.2",
"postcss": "8.4.47",
"postcss-loader": "8.1.1",
"prettier": "3.3.3",
"storybook": "^8.4.0",
"style-loader": "4.0.0",
"tailwindcss": "3.4.14",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "^10.9.2",
"typescript": "5.6.3",
"web-ext-types": "^3.2.1",
"webpack": "5.95.0",
"webpack-cli": "5.1.4"
},
"dependencies": {
"chart.js": "3.2.1",
"idb": "6.1.2",
"react": "17.0.2",
"react-chartjs-2": "3.0.3",
"react-dom": "17.0.2",
"react-github-contribution-calendar": "2.2.0",
"react-tooltip": "4.2.21",
"tailwind-merge": "2.5.4",
"throttle-debounce": "5.0.2"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}