-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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": "basic-front-boilerplate",
"version": "2.3.0",
"description": "Boilerplate básico para projetos front-end com ênfase em HTML/CSS.",
"source": "index.html",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "parcel",
"build": "parcel build",
"build-with-reporter": "parcel build --reporter @parcel/reporter-bundle-analyzer",
"prepare": "husky install",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desenvolvweb/basic-front-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/desenvolvweb/basic-front-boilerplate/issues"
},
"homepage": "https://github.com/desenvolvweb/basic-front-boilerplate#readme",
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@hint/connector-local": "3.2.27",
"@hint/formatter-codeframe": "3.1.35",
"@open-turo/commitlint-config-conventional": "1.1.0",
"@parcel/css": "1.14.0",
"@parcel/reporter-bundle-analyzer": "2.10.3",
"@parcel/transformer-sass": "2.10.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.3",
"@semantic-release/release-notes-generator": "12.1.0",
"hint": "7.1.8",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"parcel": "2.10.3",
"postcss-pxtorem": "6.0.0",
"prettier": "3.1.0",
"semantic-release": "22.0.8",
"stylelint": "15.2.0",
"stylelint-config-sass-guidelines": "10.0.0",
"stylelint-config-standard": "30.0.0",
"stylelint-config-standard-scss": "7.0.1",
"stylelint-high-performance-animation": "1.9.0",
"stylelint-sass-render-errors": "3.2.0"
},
"lint-staged": {
"*.{html,js,md}": "prettier --write",
"*.{css,scss}": [
"prettier --write",
"stylelint --fix"
]
},
"@parcel/transformer-css": {
"drafts": {
"customMedia": true
}
},
"targets": {
"modern": {
"engines": {
"browsers": "last 1 year"
}
},
"legacy": {
"engines": {
"browsers": "> 0.5%, last 3 versions, not dead"
}
}
}
}