forked from BlackBeltTechnology/pandino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "pandino-root",
"license": "EPL-2.0",
"author": "Norbert Herczeg <[email protected]>",
"workspaces": [
"./packages/@pandino/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"format": "prettier --config .prettierrc \"packages/@pandino/*/src/**/*.{js,ts,tsx}\" --write",
"format-examples": "prettier --config .prettierrc examples/*/packages/*/src/**/*.{ts,tsx} --write",
"new-version": "lerna version --yes",
"new-publish": "lerna publish",
"new-publish:ci": "lerna publish --yes",
"conventional-changelog": "conventional-changelog",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lerna": "lerna"
},
"devDependencies": {
"@lerna-lite/cli": "^1.15.1",
"@lerna-lite/run": "^1.15.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.3",
"conventional-changelog-cli": "^2.2.2",
"jest": "^29.3.1",
"prettier": "^2.8.4",
"rollup": "^3.15.0",
"rollup-plugin-clear": "^2.0.7",
"ts-jest": "^29.0.3",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14.9.0",
"npm": ">=7.0.0"
}
}