-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 864 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 864 Bytes
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
{
"name": "website",
"description": "Repository for chadi.io",
"private": "true",
"scripts": {
"dev": "browser-sync start --server --files website --startPath website/index.html",
"check": "prettier --check \"**/*\" --ignore-unknown && stylelint website/css/*",
"lint": "prettier --write \"**/*\" --ignore-unknown && stylelint --fix website/css/*",
"test": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChadiEM/website.git"
},
"author": "Chadi El Masri",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChadiEM/website/issues"
},
"devDependencies": {
"browser-sync": "^3.0.0",
"cypress": "^15.0.0",
"prettier": "^3.0.0",
"stylelint": "^17.6.0",
"stylelint-config-recommended": "^18.0.0",
"stylelint-no-unsupported-browser-features": "^8.1.1"
}
}