-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.03 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
{
"name": "zoomeme",
"version": "1.0.0",
"description": "Super simple zoom-in meme generator.",
"main": "index.html",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --progress --watch --mode development",
"start": "webpack-dev-server --open --mode development",
"lint": "eslint src",
"format": "prettier 'src/**/*.{js,json,css,md}' --write",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirLisko/zoomeme.git"
},
"author": {
"name": "Luca Lischetti",
"email": "sirlisko@gmail.com",
"url": "https://sirlisko.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sirLisko/zoomeme/issues"
},
"homepage": "https://github.com/sirLisko/zoomeme#readme",
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"html2canvas": "^1.3.2",
"sw-toolbox": "^3.6.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"simulant": "^0.2.2"
},
"babel": {
"presets": [
"@babel/env"
]
},
"eslintConfig": {
"extends": [
"standard",
"plugin:prettier/recommended"
],
"env": {
"browser": true,
"jest": true
},
"plugins": [
"standard",
"jest"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/modules/*.{js,jsx}"
]
}
}