-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "discord-interactions-middlewares",
"version": "0.1.0",
"bin": {
"discord-interactions-middlewares": "bin/discord-interactions-middlewares.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "cdk deploy --all",
"check": "npm run check:prettier && npm run check:eslint",
"check:prettier": "prettier -c .",
"check:eslint": "eslint . --ext .ts --max-warnings 0",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "20.6.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"aws-cdk": "2.107.0",
"esbuild": "^0.19.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"aws-cdk-lib": "2.107.0",
"constructs": "^10.0.0",
"dotenv": "^16.3.1",
"source-map-support": "^0.5.21"
}
}