-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1005 Bytes
/
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
{
"name": "jolly-code",
"description": "Website for listing funny programming projects",
"version": "0.1.0",
"main": "N/A",
"scripts": {
"format": "prettier --write \"./**/*.{css,html,json,md}\"",
"format:check": "prettier --check \"./**/*.{css,html,json,md}\"",
"lint": "yarn run lint:html && yarn run lint:css",
"lint:css": "stylelint **/*.css",
"lint:html": "htmlhint **/*.html",
"start": "yarn install && live-server --no-browser public"
},
"repository": "https://github.com/dguo/jolly-code",
"author": "Danny Guo",
"license": "MIT",
"private": true,
"devDependencies": {
"htmlhint": "1.1.4",
"live-server": "1.2.2",
"prettier": "2.8.8",
"stylelint": "15.7.0",
"stylelint-config-recommended": "12.0.0"
},
"prettier": {
"tabWidth": 4
},
"stylelint": {
"extends": "stylelint-config-recommended"
},
"packageManager": "[email protected]"
}