-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "@19h47/keycode",
"version": "3.1.0",
"description": "Simple keycode helper",
"main": "dist/main.js",
"scripts": {
"deploy": "yarn login && yarn prod && npm publish",
"dev": "webpack --mode=development --config webpack/webpack.config.js",
"prod": "webpack --mode=production --config webpack/webpack.config.js",
"start": "webpack-dev-server --mode=development --hot --config webpack/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git://github.com/19h47/19h47-keycode.git"
},
"keywords": [
"keycode",
"ES6"
],
"author": "Jérémy Levron <jeremylevron@19h47.fr> (https://19h47.fr)",
"license": "ISC",
"bugs": {
"url": "https://github.com/19h47/19h47-keycode/issues"
},
"homepage": "https://github.com/19h47/19h47-keycode#readme",
"devDependencies": {
"@19h47/prettier-config": "^1.0.0",
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@babel/eslint-plugin": "^7.22.10",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/runtime": "^7.23.1",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.32.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-webpack": "^0.13.7",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"prettier": "^3.0.3",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0",
"webpack-notifier": "^1.15.0"
}
}