-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
130 lines (130 loc) · 4.54 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
121
122
123
124
125
126
127
128
129
130
{
"name": "chrome-dynamic-bookmarks",
"version": "3.1.3",
"description": "Chrome extension which dynamically updates bookmarks based on the specified regular expression.",
"pre-commit": [
"format:prettier"
],
"scripts": {
"start": "webpack-dev-server --open --env.env=dev",
"watch": "webpack --watch --env.env=dev",
"dev": "webpack --env.env=dev",
"dev:analyze": "webpack --env.env=dev --env.addons=bundleanalyzer",
"build": "cross-env NODE_ENV=production webpack -p --env.env=prod",
"build:analyze": "cross-env NODE_ENV=production webpack -p --env.env=prod --env.addons=bundleanalyzer",
"clean": "rimraf build",
"check:types": "tsc",
"reset": "rimraf node_modules",
"test": "jest",
"lint": "eslint --ext .jsx,.js,.ts,.tsx ./src",
"format": "npm-run-all -s format:js format:stylelint format:prettier",
"format:js": "eslint --cache --fix --ext .jsx,.js,.ts,.tsx ./src",
"format:stylelint": "stylelint \"**/*.{css}\" --allow-empty-input",
"format:prettier": "pretty-quick --staged",
"format:prettier:all": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\" --ignore-unknown",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.5.1",
"clsx": "^1.0.4",
"core-js": "^3.6.5",
"denque": "^1.4.1",
"formik": "^1.5.8",
"formik-material-ui": "0.0.22",
"lodash": "^4.17.19",
"notistack": "^0.9.17",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hotkeys": "^2.0.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.15.0",
"@storybook/addon-actions": "^6.3.9",
"@storybook/addon-essentials": "^6.3.9",
"@storybook/addon-links": "^6.3.9",
"@storybook/react": "^6.3.9",
"@types/chrome": "^0.0.158",
"@types/jest": "^27.0.2",
"@types/node": "^16.4.13",
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.9",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.2",
"buffer": "^5.6.0",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.20.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-loader": "^4.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-chrome": "^0.7.2",
"mini-css-extract-plugin": "^0.8.2",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pre-commit": "^1.2.2",
"prettier": "2.3.2",
"pretty-quick": "^3.1.1",
"prop-types": "^15.7.2",
"react-hot-loader": "^4.12.21",
"rimraf": "^3.0.2",
"storybook-addon-material-ui": "^0.9.0-alpha.24",
"style-loader": "^1.2.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"terser-webpack-plugin": "^2.3.7",
"ts-loader": "^8.2.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^6.5.4",
"worker-loader": "^3.0.8"
},
"main": "index",
"types": "index",
"repository": {
"type": "git",
"url": "git+https://github.com/DaniloNovakovic/chrome-dynamic-bookmarks.git"
},
"author": "Danilo Novakovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaniloNovakovic/chrome-dynamic-bookmarks/issues"
},
"homepage": "https://github.com/DaniloNovakovic/chrome-dynamic-bookmarks#readme"
}