generated from carlosfrontend/webpack-jest-babel-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "odin-homepage",
"version": "1.0.0",
"description": "A responsive homepage",
"private": true,
"type": "module",
"scripts": {
"start": "webpack serve --open --config web.dev.cjs",
"build": "webpack --config web.prod.cjs",
"test": "jest --watchAll",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlosfrontend/odin-homepage.git"
},
"keywords": [],
"author": "carlosfrontend",
"license": "ISC",
"bugs": {
"url": "https://github.com/carlosfrontend/odin-homepage/issues"
},
"homepage": "https://github.com/carlosfrontend/odin-homepage#readme",
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "3.2.5",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}