-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.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
{
"name": "@primeuix/monorepo",
"version": "0.3.0",
"author": "PrimeTek Informatics",
"repository": {
"type": "git",
"url": "https://github.com/primefaces/primeuix.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/primefaces/primeuix/issues"
},
"scripts": {
"setup": "rm -rf **/node_modules **/dist ./pnpm-lock.yaml && pnpm install",
"link": "pnpm --filter './packages/*' dev:link",
"release": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary",
"release:beta": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary --tag beta",
"release:rc": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary --tag rc",
"build": "NODE_ENV=production pnpm run build:check && pnpm run build:packages",
"build:check": "pnpm run format:check && pnpm run security:check",
"build:packages": "pnpm run build:forms && pnpm run build:locale && pnpm run build:styled && pnpm run build:utils",
"build:forms": "pnpm --filter forms build",
"build:locale": "pnpm --filter locale build",
"build:styled": "pnpm --filter styled build",
"build:utils": "pnpm --filter utils build",
"test": "pnpm run test:locale",
"test:locale": "pnpm --filter locale test",
"security:check": "pnpm audit --production --audit-level high",
"format": "prettier --write \"**/*.{js,mjs,ts,mts,d.ts}\"",
"format:check": "prettier --check \"**/*.{js,mjs,ts,mts,d.ts}\" ",
"lint": "eslint --ext \".js,.mjs,.ts\" --ignore-path .gitignore . --cache",
"lint:fix": "eslint --fix --ext \".js,.mjs,.ts\" --ignore-path .gitignore ."
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup": "^4.18.0",
"typescript": "^5.6.3",
"tsup": "^8.1.0",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"eslint": "^9.2.0",
"prettier": "^3.3.2",
"pnpm": "^9.1.4",
"jest": "^27.4.7",
"@types/jest": "^27.4.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.11.0"
}
}