-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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": "smol",
"version": "1.0.0",
"bin": {
"smol": "bin/smol.js"
},
"author": {
"name": "Sai Hemanth Bheemreddy",
"url": "https://bshreddy.com/"
},
"license": "MIT License",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk:synth": "cdk synth",
"cdk:deploy": "cdk deploy",
"lint": "eslint ."
},
"dependencies": {
"@aws-solutions-constructs/aws-cloudfront-apigateway": "^2.45.0",
"aws-cdk-lib": "^2.101.0",
"constructs": "^10.3.0",
"dotenv": "^16.3.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"aws-cdk": "^2.101.0",
"eslint": "^8.51.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}