-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 KB
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
{
"name": "landing-page-template",
"version": "1.4.0",
"description": "The Landing Page template by 23blocks",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js # Starts the development server",
"build": "NODE_ENV=production webpack --config webpack.prod.js # Builds the production version",
"clean": "rm -rf dist # Cleans the output directory ",
"test": "echo \"Error: no test specified\" && exit 1",
"preview": "npx http-server dist # Previews the production build",
"audit": "npm audit # Runs security audits",
"deploy": "node scripts/deploy.js # Deploy to 23blocks platform in seconds!"
},
"keywords": [
"landing-page",
"template",
"html5",
"webpack",
"sass",
"seo",
"23blocks",
"23blocks-os"
],
"author": "Juan Pelaez | @jkpelaez",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@fullhuman/postcss-purgecss": "^7.0.2",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"file-loader": "^6.2.0",
"form-data": "^4.0.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.3.0"
},
"dependencies": {
"jquery": "^3.7.1"
},
"engines": {
"node": ">=20 <23"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/23blocks-OS/TheLandingPage.git"
},
"bugs": {
"url": "https://github.com/23blocks-OS/TheLandingPage/issues"
}
}