-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
120 lines (120 loc) · 3.98 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": "tabmerger",
"version": "3.0.0",
"description": "Stores your tabs in one location to save memory usage and increase your productivity",
"author": "Lior Bragilevsky <lbragile.masc@gmail.com> (https://github.com/lbragile)",
"private": true,
"dependencies": {
"nanoid": "^3.2.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.5.3",
"react-error-boundary": "^3.1.4",
"react-multi-select-component": "^4.2.1",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-undo": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@octokit/core": "^3.5.1",
"@types/chrome": "^0.0.177",
"@types/express": "^4.17.13",
"@types/node": "^17.0.14",
"@types/react": "^17.0.38",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.2",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"cspell": "^5.18.0",
"danger": "^11.0.2",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.8.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-styled-components-a11y": "0.0.34",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^7.0.4",
"postcss": "^8.4.6",
"postcss-scss": "^4.0.3",
"prettier": "^2.5.1",
"react-is": "17.0.2",
"redux-logger": "^3.0.6",
"styled-components": "^5.3.3",
"stylelint": "^14.3.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-webpack-plugin": "^3.1.1",
"ts-loader": "^9.2.6",
"ts-node-dev": "^1.1.8",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"@octokit/core": "^3.5.1",
"postcss": "8.4.5",
"react-is": "17.0.2"
},
"scripts": {
"lint:code": "eslint src -c config/.eslintrc.js --cache --max-warnings=0",
"lint:style": "stylelint src --config config/.stylelintrc.json --cache --max-warnings=0",
"lint": "pnpm lint:code && pnpm lint:style",
"format:check": "prettier --config ./config/.prettierrc.json --check src",
"format:write": "prettier --config ./config/.prettierrc.json --write src",
"spell:check": "cspell --config ./config/.cspell.json --color --show-context --show-suggestions src/**/*.{ts,tsx}",
"webpack": "webpack --config config/webpack.config.js --progress",
"start": "cross-env NODE_ENV=development pnpm webpack",
"build": "cross-env NODE_ENV=production pnpm webpack",
"changelog": "pnpm ts-node-dev autoChangeLog.ts"
},
"babel": {
"extends": "./config/.babelrc.json"
},
"eslintConfig": {
"extends": "./config/.eslintrc.js"
},
"stylelint": {
"extends": "./config/.stylelintrc.json"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}