-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
37 lines (37 loc) · 966 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
33
34
35
36
37
{
"name": "boring-stack",
"version": "0.4.0",
"private": "true",
"description": "The Boring JavaScript Stack 🥱 - an opinionated project starter for fullstack JavaScript",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint": "npx prettier --config ./.prettierrc.js --check .",
"lint:fix": "npx prettier --config ./.prettierrc.js --write ."
},
"keywords": [
"boring-stack",
"fullstack-javascript",
"vue",
"svelte",
"sails",
"inertiajs",
"tailwindcss"
],
"author": "Kelvin Omereshone",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8"
},
"workspaces": [
"packages/*",
"templates/*"
],
"lint-staged": {
"**/*": "prettier --config ./.prettierrc.js --write --ignore-unknown"
}
}