generated from prathameshrp/webpack-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "webpack-template",
"version": "1.0.0",
"description": "a template repo to get started with using webpack in projects",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.js",
"dev": "webpack serve --config webpack.dev.js",
"deploy": "git subtree push --prefix dist origin gh-pages",
"lint": "./node_modules/.bin/eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prathameshrp/webpack-template.git"
},
"keywords": [
"template"
],
"author": "Prathamesh Patil <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prathameshrp/webpack-template/issues"
},
"homepage": "https://github.com/prathameshrp/webpack-template#readme",
"devDependencies": {
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-loader": "^5.1.0",
"html-webpack-loader": "^0.0.5",
"html-webpack-plugin": "^5.6.0",
"prettier": "3.3.3",
"style-loader": "^4.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"date-fns": "^4.1.0",
"lodash": "^4.17.21"
}
}