-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 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": "igrp-framework-nextjs",
"version": "0.0.1",
"description": "IGRP Framework for Next.js",
"keywords": [
"igrp",
"framework",
"nextjs"
],
"author": "IGRP Team",
"license": "MIT",
"workspaces": [
"packages/**",
"templates/**",
"apps/**"
],
"scripts": {
"build": "pnpm -r run build",
"lint": "pnpm -r run lint",
"clean": "pnpm -r run clean",
"format": "pnpm -r run format",
"build:next": "pnpm --filter @igrp/framework-next build",
"build:auth": "pnpm --filter @igrp/framework-next-auth build",
"build:next-types": "pnpm --filter @igrp/framework-next-types build",
"build:next-ui": "pnpm --filter @igrp/framework-next-ui build",
"build:ds": "pnpm --filter @igrp/igrp-framework-react-design-system build",
"build:framework": "pnpm build:auth && pnpm build:next-types && pnpm build:ds && pnpm build:next-ui && pnpm build:next",
"dev:demo": "pnpm --filter @igrp/framework-next-template dev",
"build:demo": "pnpm --filter @igrp/framework-next-template build",
"start:demo": "pnpm --filter @igrp/framework-next-template start",
"release:demo": "pnpm --filter @igrp/framework-next-template publish:template",
"dev:app-center": "pnpm --filter @igrp/applications-center dev",
"clean-all": "pnpm -r run clean-all"
},
"devDependencies": {
"eslint": "^9.39.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.x.x"
}
}