-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "@shaharmor/browser-module-boilerplate",
"version": "0.0.0",
"description": "browser-module-boilerplate",
"keywords": [],
"homepage": "https://github.com/shaharmor/browser-module-boilerplate",
"bugs": {
"url": "https://github.com/shaharmor/browser-module-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaharmor/browser-module-boilerplate.git"
},
"license": "MIT",
"author": {
"name": "Shahar Mor"
},
"main": "dist/entry.js",
"types": "dist/entry.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "webpack",
"clean": "rm -rf ./coverage ./dist",
"dev": "webpack serve",
"lint": "eslint . --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run build",
"setup": "npm ci",
"test": "jest"
},
"devDependencies": {
"@shaharmor/eslint-config": "7.16.3",
"@shaharmor/prettier-config": "2.2.0",
"@shaharmor/tsconfig": "4.1.2",
"@types/html-webpack-plugin": "3.2.4",
"@types/jest": "26.0.20",
"@types/node": "14.14.22",
"@types/webpack": "4.41.26",
"@types/webpack-dev-server": "3.11.1",
"clean-webpack-plugin": "3.0.0",
"eslint": "7.19.0",
"html-webpack-plugin": "4.5.1",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"merge-options": "3.0.4",
"prettier": "2.2.1",
"sort-package-json": "1.48.1",
"ts-jest": "26.4.4",
"ts-loader": "8.0.14",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "4.1.3",
"webpack": "5.19.0",
"webpack-cli": "4.4.0",
"webpack-dev-server": "v4.0.0-beta.0"
}
}