-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "show-the-image",
"version": "1.0.0",
"description": "Shows the largest image in the page or tries to find a link leading to a larger version",
"repository": {
"type": "git",
"url": "git+https://github.com/smajl/show-the-image.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
"watch": "webpack --config webpack/webpack.dev.ts --watch",
"build": "npm run clean && webpack --config webpack/webpack.prod.ts",
"start": "npm run watch",
"clean": "rimraf dist"
},
"author": "Jan Pesa",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.12.1",
"@types/chrome": "0.0.125",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/jquery": "^3.5.3",
"@types/node": "^14.14.2",
"@types/webpack": "^4.41.23",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.2.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"filemanager-webpack-plugin": "^3.0.0-alpha.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0",
"webpack-merge": "^5.2.0"
}
}