-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.44 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
{
"name": "beyojar",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"build:landing": "npm run build --workspace=landing",
"start:landing": "npm run start --workspace=landing",
"start:expo": "npm run start --workspace=mobile",
"start:android": "npm run android --workspace=mobile",
"start:ios": "npm run ios --workspace=mobile",
"start:web": "npm run web --workspace=mobile",
"storybook:mobile": "npm run storybook --workspace=mobile",
"storybook-test:mobile": "npm run test-storybook --workspace=mobile",
"storybook-build:mobile": "npm run build-storybook --workspace=mobile",
"storybook-test-ci:mobile": "npm run test-storybook:ci --workspace=mobile",
"format-rest": "npx prettier --ignore-path .gitignore --write \"**/*.{css,md,json,yml}\" \"!package-lock.json\"",
"prepare": "is-ci || husky install"
},
"workspaces": [
"mobile",
"landing"
],
"devDependencies": {
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1"
},
"lint-staged": {
"mobile/**/*.{js,jsx,ts,tsx}": "npm run lint:fix --workspace=mobile",
"landing/**/*.{js,jsx,ts,tsx}": "npm run lint:fix --workspace=landing",
"*.{css,md,json,yml}": "npm run format-rest"
}
}