-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.3 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
{
"name": "vinted-enricher",
"version": "0.0.1",
"description": "Free and open source browser extension to show additional info of vinted product",
"scripts": {
"lint": "eslint .",
"clean": "rimraf dist/src",
"format": "pnpm prettier --write .",
"build": "pnpm run clean && webpack --config webpack/webpack.prod.js",
"dev": "webpack --config webpack/webpack.dev.js",
"dev:chrome": "concurrently \"npm:dev\" \"npm:start:chrome\"",
"start:chrome": "web-ext run --source-dir ./dist/ --target=chromium"
},
"author": {
"name": "Corrado Petrelli"
},
"repository": {
"type": "git",
"url": "https://github.com/corradopetrelli/vinted-enricher"
},
"homepage": "https://github.com/corradopetrelli/vinted-enricher",
"license": "GPL-3.0",
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.1",
"redux": "4.0.5",
"reduxed-chrome-storage": "2.0.0",
"styled-components": "5.2.0"
},
"devDependencies": {
"@types/chrome": "0.0.122",
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8",
"@types/react-redux": "7.1.9",
"@types/styled-components": "5.1.3",
"@typescript-eslint/eslint-plugin": "3.8.0",
"concurrently": "8.2.2",
"copy-webpack-plugin": "6.0.3",
"cross-env": "7.0.2",
"css-loader": "4.2.1",
"eslint": "7.5.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-with-typescript": "18.0.2",
"eslint-plugin-better-styled-components": "1.1.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.3",
"eslint-plugin-standard": "4.0.1",
"file-loader": "6.1.0",
"html-webpack-plugin": "4.3.0",
"mini-css-extract-plugin": "0.10.0",
"postcss-loader": "3.0.0",
"prettier": "3.0.3",
"purgecss-webpack-plugin": "3.0.0",
"resolve-url-loader": "3.1.1",
"rimraf": "3.0.2",
"sass": "1.58.3",
"sass-loader": "10.2.1",
"style-loader": "1.2.1",
"ts-loader": "6.2.1",
"typescript": "3.9.7",
"web-ext": "5.2.0",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "3.9.0",
"webpack-chrome-extension-reloader": "1.3.0",
"webpack-cli": "3.3.11",
"webpack-merge": "4.2.2"
}
}