-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 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
67
68
69
70
{
"name": "camply-checker",
"version": "1.0.0",
"description": "AWS CDK infrastructure for Camply campsite availability checker",
"private": true,
"scripts": {
"build": "tsc --project tsconfig.json",
"watch": "tsc -w --project tsconfig.json",
"test": "jest",
"cdk": "cdk",
"lint": "eslint . --ext .ts",
"format": "prettier --write '**/*.ts'",
"synth": "npm run build && cdk synth -a 'node dist/bin/camply-checker.js'",
"deploy:dev": "npm run build && cdk deploy GithubActionsStack -c env=dev --require-approval never -a 'node dist/bin/camply-checker.js' --verbose",
"deploy:prod": "npm run build && cdk deploy --all -c env=prod --require-approval never -a 'node dist/bin/camply-checker.js' --verbose",
"diff": "npm run build && cdk diff -a 'node dist/bin/camply-checker.js'",
"bootstrap": "npm run build && cdk bootstrap -a 'node dist/bin/camply-checker.js'"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"aws-cdk": "^2.127.0",
"dotenv": "^16.4.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"aws-cdk-lib": "^2.127.0",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/test"
],
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
}
}