-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "talis-cdk8s-constructs",
"version": "0.1.0",
"private": true,
"files": [
"imports/**/*.js",
"imports/**/*.d.ts",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/mongo/init",
"lib/web-service/nginx"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"npm": ">=9.5.1",
"node": ">=18.17.1"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"import": "cdk8s import --language typescript",
"format:prettier": "prettier --write .",
"format": "npm run format:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:ts": "tsc --noEmit",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:ts",
"prepare": "husky && ./e2e/install-detik.sh",
"release": "npm run build && semantic-release",
"e2e": "bats --jobs 4 --no-parallelize-within-files --timing --print-output-on-failure e2e/",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"cdk8s": "^2.5.60",
"constructs": "^10.1.175"
},
"dependencies": {
"cron-parser": "4.9.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/lodash": "^4.17.7",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"bats": "^1.11.0",
"c8": "^10.1.2",
"cdk8s": "^2.68.93",
"cdk8s-cli": "^2.198.184",
"constructs": "^10.3.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"lodash": "^4.17.21",
"memfs": "^4.11.1",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.5.4",
"vitest": "^2.0.5"
}
}