-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "nitro",
"private": true,
"description": "Nitro monorepo",
"repository": "merkle-open/generator-nitro",
"author": "The Nitro Team",
"engines": {
"node": ">=18.12.0 <21",
"npm": ">=8.19.2 <11"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npx -y npm-run-all --npm-path npm clean:*",
"clean:lock": "npx -y rimraf --glob **/package-lock.json",
"clean:modules": "npm exec --workspaces -- npx -y rimraf node_modules && npx -y rimraf node_modules",
"commit": "git-cz",
"test": "lerna run test",
"lint": "lerna run lint",
"lint:md": "markdownlint ./readme.md ./.github",
"update-dependencies": "npm-run-all --parallel update-dependencies:*",
"update-dependencies:packages": "npm exec --workspaces -- npm-check-updates -u --deprecated -x twig,webpack,css-loader,postcss-loader,sass-loader,node-sass,mini-css-extract-plugin,webpack-cli,webpack-dev-middleware,del,globby,get-port,got,yosay,gulp-filter,gulp-zip,imagemin,gulp-imagemin,imagemin-svgo,imagemin-mozjpeg,glob,rimraf",
"update-dependencies:root": "npm-check-updates -u --deprecated -x rimraf"
},
"keywords": [
"yeoman-generator",
"scaffold",
"frontend",
"app",
"nitro",
"component",
"pattern",
"modular"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"lerna": "8.1.9",
"markdownlint-cli": "0.43.0",
"npm-check-updates": "17.1.13",
"npm-run-all": "4.1.5",
"rimraf": "5.0.10"
}
}