-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.88 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
50
51
52
53
54
55
56
{
"name": "@igo2/base-api",
"version": "3.2.0-next.2",
"description": "Base Api",
"workspaces": [
"scripts",
"packages/*"
],
"homepage": "https://github.com/infra-geo-ouverte/base-api#readme",
"repository": {
"type": "git",
"url": "https://github.com/infra-geo-ouverte/base-api.git"
},
"bugs": {
"url": "https://github.com/infra-geo-ouverte/base-api/issues"
},
"license": "UNLICENSED",
"engines": {
"node": ">=20.0.0"
},
"main": "src/index.ts",
"packageManager": "npm@11.6.1",
"scripts": {
"postinstall": "git --version > /dev/null 2>&1 && git config core.hooksPath .config/git-hooks || echo 'Ignore postinstall'",
"build": "turbo build",
"types": "turbo types",
"format": "prettier packages scripts --check --config .prettierrc",
"format.fix": "prettier --write packages scripts --check --config .prettierrc",
"lint": "npm run lint --workspace=packages --if-present",
"lint.fix": "npm run lint.fix --workspace=packages --if-present",
"test": "npm run test --workspace=packages --if-present"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@commitlint/format": "^21.0.0",
"@commitlint/types": "^21.0.0",
"@eslint/js": "^10.0.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@tsconfig/node24": "^24.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"eslint": "^10.3.0",
"prettier": "^3.8.0",
"semantic-release": "^25.0.0",
"tsx": "^4.21.0",
"turbo": "^2.9.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.61.0"
}
}