-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 1.25 KB
/
package.json
File metadata and controls
37 lines (36 loc) · 1.25 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
{
"name": "java-code-lab",
"version": "1.0.0",
"description": "java-code-lab",
"author": "Team Backend <alvarez.joaquinez@gmail.com>",
"license": "LGPL-3.0",
"engines": {
"node": ">=14"
},
"scripts": {
"plop": "cross-env TS_NODE_PROJECT='./provision/generators/plop/ts-node.tsconfig.json' plop --plopfile provision/generators/plop/index.ts",
"ncu": "ncu -u --target minor",
"ncu:patch": "ncu -u --target patch",
"prettier": "prettier --config=.ci/linters/prettier.config.js --ignore-path=.ci/linters/.prettierignore --list-different",
"prettier:fix": "yarn prettier:lint --write=true",
"prettier:lint": "yarn prettier '**/*.{js?(on),ts?(x),scss,md,y?(a)ml,gql,graphql?(s),less,mjml}' --write=false"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"dependencies": {},
"devDependencies": {
"cross-env": "^7.0.3",
"handlebars-helpers": "^0.10.0",
"node-plop": "^0.26.3",
"plop": "^2.7.6",
"prettier": "^2.3.2",
"prettier-eslint": "^12.0.0",
"slugify": "^1.6.6",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"prettier": "./.ci/linters/prettier.config.js"
}