generated from iamogbz/node-js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
138 lines (138 loc) · 4.26 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "webpack-compiler-plugin",
"version": "0.0.1",
"description": "Easily listen to webpack compiler hooks and execute commands on events",
"author": "iamogbz",
"repository": {
"type": "git",
"url": "https://github.com/iamogbz/webpack-compiler-plugin"
},
"bugs": {
"url": "https://github.com/iamogbz/webpack-compiler-plugin/issues"
},
"homepage": "https://github.com/iamogbz/webpack-compiler-plugin#readme",
"license": "Unlicense",
"keywords": [
"compile",
"plugin",
"shell",
"webpack"
],
"engines": {
"node": ">=8",
"npm": ">=6"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint ./src ./tests --ext .js,.ts",
"clean": "rm -rf ./lib && rm -rf ./build",
"commitlint": "commitlint-travis",
"build": "webpack --mode=production",
"build-watch": "webpack --mode=development --watch",
"build-types": "tsc --emitDeclarationOnly",
"test": "jest",
"coveralls": "cat ./artifacts/coverage/lcov.info | coveralls",
"typecheck": "tsc --noEmit",
"commit": "git-cz",
"release": "semantic-release"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "./lib"
}
],
"@semantic-release/github"
]
},
"jest": {
"preset": "ts-jest",
"moduleDirectories": [
"./src",
"./tests",
"./node_modules"
],
"testPathIgnorePatterns": [
"./artifacts/",
"./node_modules/"
],
"coverageDirectory": "./artifacts/coverage"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint",
"npm test -- --bail --findRelatedTests"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/travis-cli": "^19.3.0",
"@semantic-release/github": "^10.0.6",
"@types/chrome": "0.0.268",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.4",
"@types/source-map": "^0.5.7",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"acorn": "^8.12.0",
"babel-loader": "^9.1.3",
"babel-runtime": "^6.26.0",
"commitizen": "^4.3.0",
"copy-webpack-plugin": "^12.0.2",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"rxjs": "^7.8.1",
"semantic-release": "^24.0.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}