-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "python-app-template",
"version": "0.0.0",
"private": true,
"workspaces": [
"iac"
],
"scripts": {
"check": "npm run check -ws && npm run check:secret && npm run check:spell",
"check:secret": "secretlint '**/*'",
"check:spell": "cspell '**/*.{ts,tsx}' --cache --gitignore",
"fix": "npm run fix -ws && npm run check:spell",
"sort": "sort-package-json && npm run sort -ws",
"update:pkgs": "ncu -u && npm run update:pkgs -ws"
},
"prettier": "@classmethod/prettier-config",
"dependencies": {
"npm-run-all2": "6.2.3"
},
"devDependencies": {
"@classmethod/eslint-config": "0.1.7",
"@classmethod/prettier-config": "0.0.3",
"@secretlint/secretlint-rule-preset-recommend": "8.2.4",
"@tsconfig/recommended": "1.0.7",
"@types/node": "22.7.4",
"cspell": "8.14.4",
"npm-check-updates": "17.1.3",
"secretlint": "8.2.4",
"sort-package-json": "2.10.1",
"source-map-support": "0.5.21",
"typescript": "5.6.2"
},
"engines": {
"node": ">= 20.x",
"npm": "10.7.0"
},
"volta": {
"node": "20.12.2",
"npm": "10.7.0"
}
}