-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1008 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
{
"name": "bellshade-monorepo",
"version": "1.0.0",
"description": "Repositori monorepo untuk organisasi bellshade",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run start --scope=@bellshade/server --stream",
"server:start": "lerna run start --scope=@bellshade/server --stream",
"server:dev": "lerna run dev --scope=@bellshade/server --stream",
"server:test": "lerna run test --scope=@bellshade/server --stream",
"lint": "eslint .",
"prepare": "husky install"
},
"author": "bellshade",
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/config-lerna-scopes": "^17.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.4.6",
"husky": "^8.0.1",
"lerna": "^4.0.0",
"lint-staged": "^12.4.3",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}