-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.44 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.44 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
{
"name": "@react-oauth/monorepo",
"private": true,
"description": "Monorepo for OAuth2 providers in React 🚀",
"workspaces": [
"packages/*",
"packages/@react-oauth/*",
"apps/*"
],
"scripts": {
"dev": "cross-env NODE_ENV=development turbo run dev",
"dev:google": "npm run dev -- --filter=...@react-oauth/google",
"build": "cross-env NODE_ENV=production turbo run build",
"build:packages": "npm run build -- --filter='@react-oauth/*'",
"prettier:check": "prettier . --check --ignore-unknown --ignore-path .gitignore",
"prettier:fix": "prettier . --write --ignore-unknown --ignore-path .gitignore",
"changeset": "changeset",
"release": "yarn build:packages && changeset publish",
"commit": "cz",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"turbo": "^1.2.9"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}