-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.53 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
{
"name": "slopezmenend",
"version": "0.1.0",
"private": true,
"description": "PEC2: Herramientas CSS y HTML 2. Usando uoc-boilerplate",
"scripts": {
"parcel:serve": "parcel serve src/*.html -p 8123 --open",
"parcel:build": "parcel build src/*.html --public-url ./ --dist-dir dist --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 stylelint parcel:build",
"test": "echo 'Everything is working as expected ✅\nStart working on your project by running \\033[1mnpm run dev\\033[0m'",
"just-deploy": "git add . && git commit -m \"VSCode commit\" && git push -v origin main",
"deploy": "npm run build just-deploy",
"stylelint": "stylelint src/**/*.scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slopezmenend/PEC2_herramientas2.git"
},
"author": {
"name": "Samuel López",
"email": "slopezmenend@uoc.edu"
},
"license": "MIT",
"homepage": "https://github.com/slopezmenend/PEC2_herramientas2/blob/main/README.md",
"devDependencies": {
"autoprefixer": "^10.2.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.0-nightly.566",
"postcss-preset-env": "^6.7.0",
"rimraf": "^3.0.2",
"sass": "^1.32.5",
"sharp": "^0.27.1",
"stylelint": "^13.12.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.19.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"stylelint-order": "^4.1.0"
}
}