This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 1.49 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
{
"name": "contentz",
"description": "Create Content, Get a Highly Optimized Website",
"version": "3.14.1",
"bin": "./cli.js",
"files": [
"src",
"cli.js",
"video.js",
"card.js",
"package.json",
"README.md",
"yarn.lock"
],
"keywords": [
"contentz",
"ssg",
"static",
"website",
"optimized",
"performance",
"offline first",
"mdx",
"i18n"
],
"repository": "https://github.com/sergiodxa/contentz.git",
"author": {
"name": "Sergio Xalambrí",
"email": "[email protected]",
"url": "https://sergiodxa.com"
},
"homepage": "https://contentz.tech",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/sergiodxa/contentz/issues"
},
"license": "MIT",
"scripts": {
"lint": "eslint 'src/**/*.js'",
"pretty": "prettier --check 'src/**/*.js'"
},
"dependencies": {
"chalk": "2.4.2",
"command-exists": "1.2.8",
"execa": "3.2.0",
"has-module": "0.1.1",
"meow": "5.0.0"
},
"devDependencies": {
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"lerna": "3.16.4",
"lint-staged": "9.4.2",
"prettier": "1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
}