forked from uoc-advanced-html-css/uoc-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "uoc-boilerplate",
"version": "3.9.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",
"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"
}
}
},
"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": {
"@parcel/transformer-sass": "^2.12.0",
"autoprefixer": "^10.4.20",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"postcss-preset-env": "^10.0.5",
"posthtml-include": "^2.0.1",
"rimraf": "^6.0.1",
"sharp": "^0.31.3"
}
}