-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 774 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 774 Bytes
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
{
"name": "cook",
"version": "1.0.0",
"description": "Sample application demonstrating use of Config Server for Tanzu",
"main": "cook.js",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"start": "node cook.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"check": "npm run lint && npm run format",
"fix": "npm run lint:fix && npm run format:fix"
},
"engines": {
"node": "^22.0.0",
"npm": "^11.0.0"
},
"dependencies": {
"dotenv": "^17.2.0",
"express": "^5.1.0"
},
"devDependencies": {
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.2"
}
}