This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.02 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
{
"name": "@schibsted/github-actions-self-hosted-cdk",
"description": "Self-hosted Github Actions runners, CDK powered, on AWS 🚀",
"version": "0.11.0",
"repository": {
"type": "git",
"url": "https://github.com/schibsted/github-actions-self-hosted-cdk.git"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc && cp src/vm/component.yml build/vm && cp src/vm/entrypoint.sh build/vm && cp src/webhook/handler.js build/webhook",
"cdk": "cdk",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --fix --ext ts",
"prettier": "prettier --write '{*/**/*,*}.{ts,js,md,json}'",
"test": "npm run lint && npm run test:security && npm run typecheck && npm run test:unit",
"test:security": "npm audit --audit-level=high --registry=https://registry.npmjs.org",
"test:unit": "jest",
"typecheck": "tsc"
},
"lint-staged": {
"*.{ts,md,json}": [
"npm run prettier",
"git add"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"dependencies": {
"aws-cdk-lib": "^2.5.0",
"constructs": "^10.0.13",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.11.17",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.7",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"ts-node": "^10.4.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}