-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "blog",
"main": "index.ts",
"scripts": {
"format": "prettier --write . --cache",
"lint": "eslint . --fix --cache",
"push": "yarn && yarn format && yarn lint && pulumi up --skip-preview --yes",
"pushWithRefresh": "yarn && yarn format && yarn lint && pulumi up --skip-preview --yes -r"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.18",
"eslint": "^8.31.0",
"eslint-config-mahir": "^0.0.18",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@pulumi/aws": "^5.25.0",
"@pulumi/awsx": "^1.0.1",
"@pulumi/pulumi": "^3.50.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0"
},
"imports": {
"#tables/*": [
"./database/*.ts"
],
"#routes/*": [
"./APIGateway/routes/*.ts"
],
"#lambdas/*": [
"./APIGateway/lambdas/*.ts"
],
"#utils/*": [
"./utils/*.ts"
]
},
"packageManager": "[email protected]"
}