-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 943 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 943 Bytes
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
{
"name": "10xbuilder-code",
"version": "1.0.0",
"description": "Landing page veterinaria con TailwindCSS y JavaScript Vanilla",
"license": "MIT",
"private": true,
"author": {
"name": "GNDX"
},
"repository": {
"type": "git",
"url": "https://github.com/lab10-org/10X-builder-code.git"
},
"bugs": {
"url": "https://github.com/lab10-org/10X-builder-code/issues"
},
"homepage": "https://ev0.gndx.dev",
"contributors": [
{
"name": "Oscar Barajas @gndx",
"email": "oscar@gndx.dev",
"url": "https://gndx.dev"
}
],
"type": "commonjs",
"scripts": {
"css:watch": "tailwindcss -i ./src/styles/input.css -o ./public/assets/css/styles.css --watch",
"css:build": "tailwindcss -i ./src/styles/input.css -o ./public/assets/css/styles.css --minify",
"dev": "npm run css:watch",
"build": "npm run css:build"
},
"devDependencies": {
"tailwindcss": "^3.4.17"
}
}