-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "booking-ui",
"workspaces": [
"packages/*",
"apps/*"
],
"version": "0.0.1",
"description": "This monorepo will hold all the packages for the fronted teams.",
"main": "index.js",
"private": true,
"devDependencies": {
"@types/prettier": "^2.4.4",
"eslint": "^8.16.0",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"stylus-loader": "^6.2.0",
"typescript": "^4.6.2",
"webpack": "^5.70.0"
},
"scripts": {
"bootstrap": "yarn install; lerna bootstrap;",
"start": "lerna run start --parallel",
"start:app": "node -r ./dotenv.config.js node_modules/.bin/lerna run --scope booking-app --stream dev",
"build:app": "node -r ./dotenv.config.js node_modules/.bin/lerna run --scope booking-app --stream build",
"run:build:app": "lerna run start --scope booking-app",
"start:app_alt": "lerna run --scope booking-app --stream dev",
"storybook:app": "lerna run --scope booking-app --stream storybook"
},
"repository": "git+https://github.com/Platzi-Master-C9/booking-ui.git",
"author": "C9",
"license": "ISC",
"bugs": {
"url": "https://github.com/Platzi-Master-C9/booking-ui/issues"
},
"homepage": "https://github.com/Platzi-Master-C9/booking-ui#readme"
}