-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@dabapps/create-webpack-config",
"version": "0.4.5",
"description": "A utility for creating webpack configs with common settings",
"main": "src/index.js",
"scripts": {
"build": "rm -rf ./test-files/build/ && webpack --mode production",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,mk,html,yml}'",
"prettier-check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md,mk,html,yml}'",
"tests": "jest",
"lint": "eslint src tests",
"test": "npm run prettier-check && npm run lint && npm run tests -- --coverage --runInBand && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabapps/create-webpack-config.git"
},
"keywords": [
"webpack",
"config",
"dabapps",
"javascript",
"typescript",
"es6",
"react",
"type",
"checking",
"tree",
"shaking"
],
"author": "DabApps",
"license": "MIT",
"bugs": {
"url": "https://github.com/dabapps/create-webpack-config/issues"
},
"homepage": "https://github.com/dabapps/create-webpack-config#readme",
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"babel-loader": "^8.2.2",
"babel-plugin-const-enum": "^1.0.1",
"circular-dependency-plugin": "^5.2.2",
"core-js": "^3.8.0",
"fork-ts-checker-webpack-plugin": "^6.0.4",
"raf": "^3.4.1",
"raw-loader": "^4.0.2",
"typescript": "^3.9.7",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-dabapps": "^5.1.1",
"jest": "^25.5.4",
"prettier": "^1.19.1",
"tslint": "^5.20.1"
},
"peerDependencies": {
"@babel/core": "7",
"@babel/generator": "7",
"@babel/runtime": "7",
"core-js": "3",
"typescript": ">= 2",
"webpack": "5",
"webpack-cli": "4"
},
"publishConfig": {
"access": "public"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"collectCoverageFrom": [
"src/**/*.@(ts|tsx|js|jsx)"
]
}
}