-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.43 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
{
"name": "@awsworkshop/root",
"private": true,
"workspaces": [
"infra"
],
"installConfig": {
"hoistingLimits": "dependencies"
},
"scripts": {
"prettier:check": "prettier --config .prettierrc.js --check \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"prettier": "prettier --config .prettierrc.js --write \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "npm run lint --fix",
"build:lambda": "cd lambda && npm run build",
"package:dependency-layer": "cd lambda && mv node_modules node_modules_dev && npm i --omit=dev && mkdir -p dependency-layer/nodejs && cp -r node_modules dependency-layer/nodejs && rm -rf node_modules && mv node_modules_dev node_modules",
"deploy": "npm run deploy --workspace=infra",
"deploy:ci": "npm run deploy:ci --workspace=infra",
"diff": "npm run diff --workspace=infra",
"test": "npm run test --workspace=infra --workspace=lambda"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.0",
"jest-junit": "^14.0.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}