generated from TommasoAmici/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "html-webpack-plugin-django",
"version": "1.0.0",
"description": "",
"keywords": [
"webpack",
"plugin",
"html",
"html-webpack-plugin",
"django"
],
"author": "Tommaso Amici",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/TommasoAmici/html-webpack-plugin-django#readme",
"repository": {
"type": "git",
"url": "https://github.com/TommasoAmici/html-webpack-plugin-django.git"
},
"bugs": {
"url": "https://github.com/TommasoAmici/html-webpack-plugin-django/issues",
"email": "me@tommasoamici.com"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"test": "jest --watch --passWithNoTests",
"test:ci": "jest --ci --passWithNoTests",
"test:e2e:ci": "jest --ci --runInBand --passWithNoTests --config=jest.e2e.config.js",
"format": "prettier --write .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css,yml,json}": "prettier --write"
},
"devDependencies": {
"@types/expect-puppeteer": "4.4.7",
"@types/jest": "27.5.2",
"@types/jest-environment-puppeteer": "5.0.5",
"@types/node": "16.18.123",
"@types/puppeteer": "5.4.7",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-puppeteer": "6.2.0",
"lint-staged": "13.3.0",
"pinst": "3.0.0",
"prettier": "2.8.8",
"puppeteer": "18.0.3",
"ts-jest": "27.1.5",
"typescript": "5.0.4"
},
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.65.0"
},
"workspaces": [
"example"
],
"packageManager": "yarn@3.6.4"
}