forked from uoc-advanced-html-css/uoc-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.52 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
{
"name": "uoc-boilerplate",
"version": "3.10.0",
"private": true,
"description": "Boilerplate for Advanced HTML/CSS Tools UOC students",
"scripts": {
"parcel:serve": "parcel -p 8123 --target web --open",
"parcel:build": "parcel build --target web --no-source-maps --no-cache",
"clean": "rimraf dist .cache .cache-loader .parcel-cache",
"dev": "npm-run-all clean parcel:serve",
"build": "npm-run-all clean parcel:build",
"stylelint": "stylelint src/**/*.scss",
"eslint": "eslint src/**/*.html",
"test": "echo 'Everything is working as expected ✅\nStart working on your project by running \\033[1mnpm run dev\\033[0m'",
"prepare": "husky"
},
"targets": {
"web": {
"context": "browser",
"publicUrl": "./",
"source": "src/index.html",
"engines": {
"browsers": "last 2 versions, > 0.5%, not dead"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/uoc-advanced-html-css/uoc-boilerplate.git"
},
"author": {
"name": "Jordi Tarrida",
"email": "jorditarrida@uoc.edu"
},
"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.16.0",
"@html-eslint/eslint-plugin": "^0.27.0",
"@html-eslint/parser": "^0.27.0",
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"autoprefixer": "^10.4.15",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"postcss-preset-env": "^9.1.1",
"posthtml-include": "^1.7.4",
"prettier": "^3.3.0",
"prettier-eslint": "^16.3.0",
"rimraf": "^5.0.1",
"sharp": "^0.31.3",
"stylelint": "^16.11.0",
"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.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.1",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"normalize-scss": "^8.0.0",
"sass-mq": "^6.0.0"
}
}