generated from desenvolvweb/basic-front-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.29 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
{
"name": "basic-front-boilerplate",
"version": "2.0.2",
"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": "17.0.0",
"@commitlint/config-conventional": "17.0.0",
"@csstools/postcss-cascade-layers": "1.0.2",
"@hint/connector-local": "3.2.16",
"@hint/formatter-codeframe": "3.1.26",
"@open-turo/commitlint-config-conventional": "1.0.2",
"@parcel/css": "1.10.1",
"@parcel/reporter-bundle-analyzer": "2.4.0",
"@parcel/transformer-sass": "2.4.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.4",
"@semantic-release/release-notes-generator": "10.0.3",
"hint": "6.1.10",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"parcel": "2.4.0",
"postcss-pxtorem": "6.0.0",
"prettier": "2.6.0",
"semantic-release": "19.0.3",
"stylelint": "14.6.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "25.0.0",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-high-performance-animation": "1.6.0",
"stylelint-sass-render-errors": "3.0.0",
"stylelint-selector-no-empty": "1.0.8"
},
"lint-staged": {
"*.{js,css,scss,md}": "prettier --write"
},
"@parcel/transformer-css": {
"drafts": {
"customMedia": true
}
},
"targets": {
"modern": {
"engines": {
"browsers": "last 1 year"
}
},
"legacy": {
"engines": {
"browsers": "> 0.5%, last 4 versions, not dead"
}
}
}
}