-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.41 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
{
"name": "boilerplate",
"version": "1.0.0",
"description": "A boilerplate to start front end projects",
"repository": "[email protected]:developers/frontend/boilerplate.git",
"author": "Lemone B.V.",
"license": "MIT",
"browserslist": "> 0.5%, last 2 versions, not dead",
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"clean:output": "rimraf dist",
"start": "yarn run clean:output && parcel src/index.html -p 8000",
"build": "parcel build src/index.html --public-url ./"
},
"devDependencies": {
"@parcel/config-default": "^2.12.0",
"@parcel/core": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"@parcel/validator-eslint": "^2.12.0",
"eslint": "^9.9.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"parcel": "^2.12.0",
"parcel-validator-stylelint": "^1.0.1",
"postcss": "^8.4.45",
"postcss-import": "^16.1.0",
"posthtml": ">=0.16.6",
"posthtml-expressions": "^1.11.4",
"posthtml-include": "^2.0.1",
"posthtml-inline-svg": "^0.2.0",
"rimraf": "^6.0.1",
"stylelint": "^16.2.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"tailwindcss": "^3.4.1"
},
"dependencies": {
"@alpinejs/collapse": "^3.14.1",
"@alpinejs/focus": "3.14.1",
"@alpinejs/ui": "^3.14.1-beta.0",
"@glidejs/glide": "^3.6.2",
"alpinejs": "^3.14.1"
}
}