-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "pp-geoserver-side-car",
"version": "3.0.0",
"description": "this utility create initial geoserver connection & set polygonParts mappings",
"main": "./src/index.mjs",
"scripts": {
"start": "node src/index.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "standard-version"
},
"author": "mapcolonies",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@map-colonies/js-logger": "^1.0.1",
"@map-colonies/mc-model-types": "^17.9.3",
"dotenv": "^16.4.5",
"env-var": "^7.5.0",
"zx": "^8.1.2",
"chokidar": "^4.0.3"
},
"devDependencies": {
"@map-colonies/eslint-config": "^4.0.0",
"@map-colonies/prettier-config": "0.0.1",
"@map-colonies/standard-version-update-helm-version": "^2.0.1",
"eslint": "^8.43.0",
"prettier": "^2.8.8",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">=24.0.0"
}
}