-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.31 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
{
"name": "@little-bonsai/make-static-project-site",
"type": "module",
"version": "0.5.0",
"description": "",
"main": "src/index.js",
"scripts": {
"format": "prettier --write src/**/*",
"lint": "eslint . && prettier --check src/**/*",
"prepushOnly": "npm run format",
"prepublishOnly": "npm run format"
},
"bin": {
"make-static-site": "src/index.js"
},
"author": "",
"license": "ISC",
"sideEffects": false,
"files": [
"/fonts",
"/src",
"/README.md"
],
"eslintConfig": {
"extends": "@little-bonsai"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"**/*.md"
],
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"**/*.js": "eslint --fix",
"**/*.{md,js,json}": "prettier --write"
},
"devDependencies": {
"@little-bonsai/eslint-config": "^0.1.0",
"eslint": "^7.28.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@little-bonsai/tailwind-config": "^0.1.3",
"arg": "^5.0.0",
"mime-types": "^2.1.31",
"node-fetch": "^3.0.0",
"prettier": "^2.3.1",
"ramda": "^0.27.1",
"sharp": "^0.28.3",
"tailwindcss-cli": "^0.1.2"
}
}