-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "static-starter-kit",
"version": "1.0.0",
"description": "Boilerplate for building static websites with Parcel, Twig, and Stimulus.",
"repository": "[email protected]:julien-lmnr/static-starter-kit.git",
"author": "labfordev <[email protected]>",
"license": "MIT",
"engines": {
"yarn": ">=4"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"scripts": {
"start": "parcel src/*.twig",
"build": "parcel build src/*.twig",
"lint:style": "stylelint \"assets/scss/**/*.scss\"",
"lint:js": "eslint \"assets/js/**/*.js\"",
"format": "prettier --write assets/"
},
"devDependencies": {
"@hotwired/stimulus": "^3.2.2",
"@parcel/plugin": "^2.11.0",
"@parcel/transformer-sass": "^2.11.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"glob": "^10.3.10",
"parcel": "^2.11.0",
"parcel-transformer-twig": "link:./parcel/parcel-transformer-twig",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.1.0",
"twig": "^1.17.1"
}
}