forked from startupjs/startupjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.83 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"engines": {
"node": ">= 20.10"
},
"workspaces": [
"packages/*",
"docker",
"expoapp"
],
"//workspaces": [
"styleguide"
],
"scripts": {
"init-local": "./scripts/tasks.sh local-init",
"testapp": "cd testapp && yarn",
"android": "cd styleguide && yarn android",
"ios": "cd styleguide && yarn ios",
"//": "// NOTE: this is temporary, until we get styleguide working with expo",
"//start": "cd styleguide && yarn start",
"start": "yarn expoapp",
"expoapp": "cd expoapp && yarn start",
"metro": "cd styleguide && yarn metro",
"web": "cd styleguide && yarn web",
"server": "cd styleguide && yarn server",
"android-release": "cd styleguide && yarn android-release",
"ios-release": "cd styleguide && yarn ios-release",
"//_": "// NOTE: this is temporary, until we get styleguide working with expo",
"//build": "cd styleguide && yarn build",
"build": "cd expoapp && yarn build",
"//__": "// NOTE: this is temporary, until we get styleguide working with expo",
"//start-production": "cd styleguide && yarn start-production",
"start-production": "cd expoapp && yarn start-production",
"postinstall": "npx startupjs postinstall",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -k ./lerna.json",
"clean": "echo 'Cleaning root node_modules...' && rm -rf node_modules && npx lerna clean --yes",
"publish-patch": "yarn before-publish && npx lerna publish patch --no-push && yarn publish-update-changelog",
"publish-patch-force": "yarn before-publish && npx lerna publish patch --force-publish --no-push && yarn publish-update-changelog",
"publish-minor": "yarn before-publish && npx lerna publish minor --no-push && yarn publish-update-changelog",
"publish-alpha": "yarn before-publish && npx lerna publish preminor --force-publish --dist-tag next --no-push && yarn publish-update-changelog",
"publish-alpha-patch": "yarn before-publish && npx lerna publish prerelease --dist-tag next --no-push && yarn publish-update-changelog",
"before-publish": "./scripts/tasks.sh before-publish",
"publish-update-changelog": "./scripts/tasks.sh update-changelog",
"test-e2e": "cd styleguide && yarn test-e2e",
"codegen-test-e2e": "cd styleguide && yarn codegen-test-e2e"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.53.0",
"eslint-config-startupjs": "workspace:packages/eslint-config-startupjs",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^9.5.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"packageManager": "yarn@4.0.2+sha256.825003a0f561ad09a3b1ac4a3b3ea6207af2796d54f62a9420520915721f5186"
}