-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.04 KB
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
{
"name": "ecamp-core",
"main": "index.ts",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --fix .",
"lint:prettier": "prettier --write --ignore-path .prettierignore **/*.{json,md,mjs,ts}",
"lint:check": "npm run lint:check:eslint && npm run lint:check:prettier",
"lint:check:eslint": "eslint .",
"lint:check:prettier": "prettier --check --ignore-path .prettierignore **/*.{json,md,mjs,ts}"
},
"dependencies": {
"@pulumi/pulumi": "3.225.1",
"@pulumi/aws": "7.22.0",
"@pulumi/awsx": "3.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.6",
"@eslint/compat": "2.0.3",
"@eslint/js": "10.0.1",
"@types/node": "24.12.0",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"globals": "17.4.0",
"prettier": "3.8.1"
}
}