-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
39 lines (39 loc) · 1.68 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
{
"name": "happy-plants",
"description": "HappyPlants is a web application to take care of your houseplants.",
"private": true,
"license": "BSD 3-Clause",
"author": "Moritz Kröger <write@moritz.berlin> (https://moritz.berlin)",
"repository": {
"type": "git",
"url": "git+https://github.com/morkro/happy-plants.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"outdated": "npx lerna exec --no-bail -- npm outdated",
"clean": "lerna clean --yes",
"bootstrap:app": "lerna bootstrap --include-dependencies --scope @happy-plants/app",
"bootstrap:app-next": "lerna bootstrap --include-dependencies --scope @happy-plants/app-next",
"bootstrap:landing": "lerna bootstrap --include-dependencies --scope @happy-plants/landing",
"bootstrap:server": "lerna bootstrap --include-dependencies --scope @happy-plants/server",
"build:app": "lerna run test:unit --scope @happy-plants/app && lerna run build --scope @happy-plants/app",
"build:app-next": "lerna run test:unit --scope @happy-plants/app-next && lerna run build --scope @happy-plants/app-next",
"build:landing": "lerna run generate --scope @happy-plants/landing",
"build:server": "lerna run build --scope @happy-plants/server",
"init:app": "npm run bootstrap:app && npm run build:app",
"init:app-next": "npm run bootstrap:app-next && npm run build:app-next",
"init:landing": "npm run bootstrap:landing && npm run build:landing",
"init:server": "npm run bootstrap:server && npm run build:server"
},
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^3.22.1"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit"
}
}
}