-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.28 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
114
115
116
117
118
119
120
{
"name": "e-clock",
"version": "0.0.0",
"description": "Chrome extension to replace \"new tab\" with digital clock",
"repository": {
"type": "git",
"url": "[email protected]:husa/e-clock.git"
},
"author": "husa",
"license": "MIT",
"bugs": {
"url": "https://github.com/husa/e-clock/issues"
},
"homepage": "https://github.com/husa/e-clock",
"scripts": {
"lint": "eslint ./src",
"test": "jest --verbose",
"dev": "rsbuild build -w",
"tsc": "tsc --noEmit",
"build": "rsbuild build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"semantic-release": "node -r dotenv/config ./node_modules/.bin/semantic-release"
},
"browserslist": [
"last 5 chrome versions"
],
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"semantic-release-web-ext",
[
"semantic-release-chrome",
{
"extensionId": "ojhhcfhabhligodffabdhcaoicecaboo",
"asset": "e-clock_${branch.name}_v${nextRelease.version}.zip",
"target": "draft"
}
],
[
"@semantic-release/github",
{
"assets": [
"e-clock*.zip",
"artifacts/*"
]
}
]
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss,md}": "prettier --write"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rsbuild/core": "^1.2.0",
"@rsbuild/plugin-react": "^1.1.0",
"@rsbuild/plugin-sass": "^1.2.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/addon-onboarding": "^8.5.0",
"@storybook/blocks": "^8.5.0",
"@storybook/react": "^8.5.0",
"@storybook/test": "^8.5.0",
"@types/chrome": "^0.0.299",
"@types/firefox-webext-browser": "^120.0.4",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/react-transition-group": "^4.4.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chrome-webstore-upload": "^3.1.4",
"dotenv": "^16.4.7",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-storybook": "^0.11.2",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"react-test-renderer": "^19.0.0",
"semantic-release": "^24.2.1",
"semantic-release-chrome": "^3.2.0",
"semantic-release-web-ext": "^1.1.0",
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"storybook": "^8.5.0",
"storybook-react-rsbuild": "^0.1.8",
"typescript": "^5.7.3"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"classnames": "^2.5.1",
"crypto-js": "^4.2.0",
"eslint": "^8.57.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-transition-group": "^4.4.5",
"redux": "^5.0.1"
}
}