forked from binjuhor/html-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.14 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
{
"name": "html-generator",
"version": "1.0.0",
"description": "HTML Generator utilizes the Laravel Blade template engine to help PHP developers quickly generate HTML for web application frontends. It leverages Blade's powerful features to speed up frontend development.",
"main": "index.php",
"scripts": {
"dev": "sass --watch --source-map resources/assets/scss/styles.scss resources/assets/css/styles.css",
"build": "sass --no-source-map resources/assets/scss/styles.scss resources/assets/css/styles.css",
"export": "yarn build && ./build",
"setup": "yarn install && composer install && cp .env.example .env",
"serve": "php -S localhost:8080 -t . && open http://localhost:8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binjuhor/html-generator.git"
},
"keywords": [
"html-generator",
"html",
"css",
"js",
"laravel",
"blade"
],
"author": "binjuhor",
"license": "MIT",
"bugs": {
"url": "https://github.com/binjuhor/html-generator/issues"
},
"homepage": "https://github.com/binjuhor/html-generator#readme",
"dependencies": {
"sass": "^1.71.0"
}
}