-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.97 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
68
69
70
71
72
73
74
75
76
77
78
{
"author": "Michael D. Norman",
"name": "CHANGEME",
"description": "",
"private": true,
"license": "UNLICENSED",
"version": "0.0.0",
"homepage": "https://github.com/mdnorman/CHANGEME/wiki/Home",
"repository": {
"type": "git",
"url": "https://github.com/mdnorman/CHANGEME"
},
"bugs": {
"url": "https://github.com/mdnorman/CHANGEME/issues"
},
"scripts": {
"clean": "rm -rf dist && rm -rf out",
"build": "tsc",
"build:watch": "tsc --watch",
"rebuild": "npm run clean && npm run build",
"test": "jest",
"posttest": "npm run lint",
"lint": "eslint",
"pretty": "pretty-quick",
"release": "standard-version",
"cdk": "cdk",
"deploy-diff": "npm run cdk diff test/*",
"deploy-diff:prod": "npm run cdk diff prod/*",
"deploy": "npm run cdk deploy test/*",
"deploy:prod": "npm run cdk deploy prod/*"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "20.16.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"aws-cdk": "2.173.4",
"aws-cdk-lib": "2.173.4",
"constructs": "10.4.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "3.4.2",
"pretty-quick": "3.1.3",
"standard-version": "9.5.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsutils": "3.21.0",
"typescript": "5.5.4"
},
"engines": {
"npm": ">=7.20",
"node": ">=16.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"issueUrlFormat": "https://github.com/mdnorman/CHANGEME/issues/{{id}}",
"issuePrefixes": [
"#"
],
"scripts": {
"postchangelog": "npm run pretty"
}
}
}