-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"name": "extended-monorepo",
"version": "0.0.0-development",
"description": "JavaScript utils and helpers.",
"author": "Richard King <[email protected]> (www.richrdkng.com)",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 16"
},
"scripts": {
"init": "npm i && lerna exec -- npm i && lerna list -all",
"//": "-------------------------------------------------------------------",
"init:clean": "npm run _clear && npm run init",
"check:deps": "bash scripts/check-deps.sh",
"update:deps:extended-only": "bash scripts/update-deps-extended-only.sh",
"///": "------------------------------------------------------------------",
"_clear": "bash scripts/clear.sh"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"glob": "^10.3.4",
"rollup-plugin-filesize": "^10.0.0",
"string-dedent": "^3.0.1",
"typescript": "^4.9.4"
},
"dependencies": {
"lerna": "^6.6.2"
}
}