-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.74 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.74 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "react-router-aws-lambda-root",
"private": true,
"type": "module",
"version": "6.0.0",
"description": "Root project of react-router-aws-lambda",
"scripts": {
"build": "./scripts/build.sh",
"publish-docker": "./scripts/publish-docker-image.sh",
"build-publish-deploy": "npm run build && npm run publish-docker && npm run deploy",
"deploy": "npm run deploy --workspace=cdk",
"login": "npm run login --workspace=cdk",
"login-docker": "./scripts/docker-login.sh",
"dev": "npm run dev --workspace=site",
"lint": "prettier --check .",
"fix": "prettier --write .",
"test": "playwright test",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gotgenes/react-router-aws-lambda-app.git"
},
"author": "Christopher D. Lasher",
"license": "MIT",
"bugs": {
"url": "https://github.com/gotgenes/react-router-aws-lambda-app/issues"
},
"homepage": "https://github.com/gotgenes/react-router-aws-lambda-app#readme",
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.19.0",
"@playwright/test": "^1.51.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.23.0",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"vite": "^6.2.3"
},
"workspaces": [
"site",
"cdk"
],
"commit-and-tag-version": {
"scripts": {
"postchangelog": "npm run fix"
}
}
}