-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "tab-pinner",
"private": true,
"version": "0.0.0-development",
"description": "",
"scripts": {
"dev:server": "vite",
"dev": "vite build --watch --mode=development",
"build": "vite build",
"type-check": "tsc --noEmit",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint-commit": "commitlint --from HEAD~",
"release": "semantic-release",
"prepare": "husky install"
},
"author": "bibixx",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@emotion/babel-plugin": "^11.10.6",
"@types/chrome": "^0.0.224",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"semantic-release": "^20.1.3",
"semantic-release-chrome": "^3.1.0",
"typescript": "^5.0.2",
"vite": "^4.2.0"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"what-input": "^5.2.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}