-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
36 lines (36 loc) · 872 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
{
"name": "creepyface-monorepo",
"private": true,
"author": "Alejandro Tardín <[email protected]>",
"homepage": "https://creepyface.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/4lejandrito/creepyface.git"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"husky": "^8.0.1",
"lerna": "^5.5.0",
"lint-staged": ">=13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.{js,ts,tsx,md,json,html,css,scss,webmanifest}": "prettier --write"
},
"scripts": {
"build": "lerna run build",
"dev": "lerna run --parallel dev",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"publish:all": "lerna publish",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}