forked from cvgellhorn/landing-page-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "landing-page-template",
"version": "2.0.0",
"description": "A simple landing page template",
"author": "Jason Scott",
"license": "MIT",
"homepage": "https://github.com/EngJay/landing-page-template",
"scripts": {
"build": "webpack --mode production --progress --config webpack.config.build.js",
"dev": "NODE_ENV=dev webpack-dev-server --progress --config webpack.config.dev.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/EngJay/landing-page-template"
},
"dependencies": {
"debounce": "^2.1.0",
"mail-redactor": "^1.0.4",
"trianglify": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.8.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}