-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
84 lines (84 loc) · 3.53 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "realms-react",
"license": "MIT",
"private": true,
"homepage": "https://github.com/BibliothecaForAdventurers/realms-react",
"repository": {
"type": "git",
"url": "https://github.com/BibliothecaForAdventurers/realms-react"
},
"author": {
"name": "Bibliothecca",
"url": "https://github.com/BibliothecaForAdventurers"
},
"keywords": [
"bibliotheca",
"workspace",
"nextjs",
"next-transpile-modules"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"g:clean": "rimraf '.cache/*' && yarn workspaces foreach -ptv run clean",
"g:build": "yarn workspaces foreach -p --topological-dev -v run build",
"g:build-changed": "yarn workspaces foreach --topological-dev --no-private -v --since=origin/main run build",
"g:test-unit": "yarn workspaces foreach -ptv run test-unit",
"g:test-e2e": "yarn workspaces foreach -tv run test-e2e",
"g:lint": "yarn workspaces foreach -ptv run lint --color",
"g:lint-styles": "yarn workspaces foreach -ptv run lint-styles --color",
"g:typecheck": "yarn workspaces foreach -ptv run typecheck",
"g:lint-staged-files": "lint-staged --allow-empty",
"g:fix-all-files": "yarn workspaces foreach -ptv run fix-all-files",
"g:changeset": "changeset",
"g:check-dist": "yarn workspaces foreach -ptv run check-dist",
"g:release": "yarn g:build && changeset publish",
"g:share-static-symlink": "yarn workspaces foreach -pv --include '*-app' run share-static-symlink",
"g:share-static-hardlink": "yarn workspaces foreach -pv --include '*-app' run share-static-hardlink",
"apps:build": "yarn workspaces foreach -ptv --include '*-app' run build",
"apps:clean": "yarn workspaces foreach -ptv --include '*-app' run clean",
"packages:build": "yarn workspaces foreach -ptv --include '@bibliotheca-dao/*' run build",
"packages:test:unit": "yarn workspaces foreach -ptv --include '@bibliotheca-dao/*' run test-unit",
"packages:lint": "yarn workspaces foreach -ptv --include '@bibliotheca-dao/*' run lint",
"packages:typecheck": "yarn workspaces foreach -ptv --include '@bibliotheca-dao/*' run typecheck",
"packages:clean": "yarn workspaces foreach -ptv --include '@bibliotheca-dao/*' run clean",
"nuke:node_modules": "rimraf '**/node_modules'",
"deps:check": "yarn dlx npm-check-updates@latest --configFileName ncurc.yml --deep",
"deps:update": "yarn dlx npm-check-updates@latest --configFileName ncurc.yml -u --deep",
"check:install": "yarn dlx @yarnpkg/doctor@latest .",
"check:renovate:config": "docker run -v renovate.json5:/usr/src/app/renovate.json5 -it renovate/renovate renovate-config-validator",
"install:playwright": "npx playwright install",
"postinstall": "is-ci || yarn husky install",
"atlas": "yarn apps/atlas dev",
"briq": "yarn apps/briq-app dev"
},
"dependencies": {
"cross-env": "7.0.3"
},
"devDependencies": {
"@bibliotheca-dao/eslint-config-bases": "workspace:^",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.24.4",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/prettier": "2.7.0",
"@types/shell-quote": "1.7.1",
"eslint": "8.23.0",
"husky": "8.0.1",
"is-ci": "3.0.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"shell-quote": "1.7.3",
"typescript": "4.8.2"
},
"engines": {
"node": "^14.13.1 || >=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"packageManager": "[email protected]"
}