-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.06 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.06 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
{
"name": "oauth-monorepo",
"version": "1.0.1",
"private": true,
"workspaces": [
"packages/*"
],
"description": "",
"main": "index.js",
"sideEffects": false,
"scripts": {
"clean-dist": "find . -type d -name 'dist' -exec rm -rf {} +",
"clean-modules": "find . -type d -name 'node_modules' -exec rm -rf {} +",
"reset": "npm run clean-dist && npm run clean-modules && rm -f package-lock.json && npm install",
"clean-core": "rm -rf packages/oauth-core/dist",
"build-core": "rm -f packages/oauth-core/tsconfig.build.tsbuildinfo && tsc -p packages/oauth-core/tsconfig.build.json",
"build-button-web": "npm run build --workspace=@charmr/oauth-button-web",
"build-button": "npm run build --workspace=@charmr/oauth-button",
"build-all": "npm run clean-core && npm run build-core && npm run build-button && npm run build-button-web",
"dev": "npm run dev --workspace=demo-app"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"vite-tsconfig-paths": "^5.1.4"
}
}