-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 944 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 944 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "warsawjs-blog",
"version": "1.0.0",
"description": "Tech blog based on WarsawJS branding collecting links to Medium posts",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "http-server .",
"build": "cp -r *.html *.css *.js *.svg public/ dist/",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{html,css,json,md}": [
"prettier --write"
]
},
"keywords": [
"warsawjs",
"blog",
"javascript",
"medium"
],
"author": "",
"license": "ISC",
"dependencies": {
"http-server": "^14.1.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8"
}
}