forked from uoc-advanced-html-css/uoc-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "uoc-boilerplate",
"version": "3.11.0",
"private": true,
"description": "Boilerplate for Advanced HTML/CSS Tools UOC students",
"scripts": {
"parcel:serve": "NODE_ENV=development parcel -p 8123 --target web --open",
"parcel:build": "NODE_ENV=production parcel build --target web --no-source-maps --no-cache",
"parcel:deploy": "NODE_ENV=production parcel build --target web --no-source-maps --no-cache --public-url /M4.258-PAC1/",
"clean": "rimraf dist .cache .cache-loader .parcel-cache",
"dev": "npm-run-all clean parcel:serve",
"build": "npm-run-all clean parcel:build",
"gh-pages:deploy": "gh-pages -d dist",
"deploy": "npm-run-all clean parcel:deploy gh-pages:deploy",
"stylelint": "stylelint src/**/*.scss",
"eslint": "eslint src/**/*.html",
"prepare": "husky",
"test": "echo 'Everything is working as expected ✅\nStart working on your project by running \\033[1mnpm run dev\\033[0m'"
},
"targets": {
"web": {
"context": "browser",
"publicUrl": "./",
"source": "src/index.html",
"engines": {
"browsers": "last 2 versions, > 0.5%, not dead"
}
}
},
"staticFiles": [
{
"staticPath": "src/robots.txt",
"env": {
"NODE_ENV": "development"
}
},
{
"staticPath": "src/humans.txt",
"env": {
"NODE_ENV": "development"
}
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/uoc-advanced-html-css/uoc-boilerplate.git"
},
"author": {
"name": "Jordi Tarrida",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/uoc-advanced-html-css/uoc-boilerplate/issues"
},
"homepage": "https://github.com/uoc-advanced-html-css/uoc-boilerplate#readme",
"devDependencies": {
"@awmottaz/prettier-plugin-void-html": "^1.6.1",
"@eslint/js": "^9.18.0",
"@html-eslint/eslint-plugin": "^0.32.0",
"@html-eslint/parser": "^0.32.0",
"@parcel/transformer-sass": "^2.13.3",
"@stylistic/stylelint-plugin": "^3.1.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-prettier": "^5.2.3",
"gh-pages": "^6.3.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.13.3",
"parcel-reporter-static-files-copy": "^1.5.3",
"postcss": "^8.5.1",
"postcss-preset-env": "^10.1.3",
"posthtml-include": "^2.0.1",
"prettier": "^3.3.0",
"prettier-eslint": "^16.3.0",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"stylelint": "^16.13.2",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-no-indistinguishable-colors": "^2.3.0",
"stylelint-scss": "^6.10.1",
"tailwindcss": "^3.4.17"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"normalize-scss": "^8.0.0"
}
}