-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 KB
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
{
"name": "create-sourcebit",
"version": "0.10.0",
"description": "Create and configure a Sourcebit installation",
"main": "index.js",
"bin": {
"create-sourcebit": "./index.js"
},
"dependencies": {
"chalk": "^3.0.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"inquirer": "^7.0.3",
"mri": "^1.1.4",
"ora": "^4.0.3",
"prettier": "^2.0.5",
"sourcebit": "^0.2.2"
},
"devDependencies": {
"@stackbit/prettier-config": "^1.0.0",
"husky": "^4.2.0",
"lint-staged": "^9.5.0"
},
"scripts": {
"test": "npm run format",
"format": "prettier --write \"./**/*.{js,json,jsx,md,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackbithq/sourcebit.git"
},
"keywords": [
"headless",
"headless-cms",
"jamstack",
"ssg"
],
"author": "Stackbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackbithq/sourcebit/issues"
},
"homepage": "https://github.com/stackbithq/sourcebit#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html}": [
"npm run format",
"git add"
]
},
"prettier": "@stackbit/prettier-config"
}