-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.6 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "serverless-remix",
"description": "AWS Lambda Proxy server request handler for Remix",
"version": "0.0.0-development",
"author": "Anders Quist <anders@qinfo.se> (https://softbyte.io/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/andersquist/serverless-remix"
},
"bugs": {
"url": "https://github.com/andersquist/serverless-remix"
},
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist",
"build": "rollup -c && tsc -b",
"lint": "eslint --cache --ext .tsx,.ts,.js,.jsx,.md .",
"semantic-release": "semantic-release"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@remix-run/eslint-config": "1.7.5",
"@remix-run/node": "1.7.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/aws-lambda": "^8.10.82",
"@types/jest": "^27.5.2",
"@types/node-fetch": "^2.5.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"babel-jest": "^27.5.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.14.0",
"jest": "^27.5.1",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.5",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.36.1",
"rollup-plugin-copy": "^3.3.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/lambda-tester": "^3.6.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lambda-tester": "^4.0.1",
"lint-staged": "^12.5.0",
"semantic-release": "^19.0.5",
"semantic-release-contributors": "^3.1.1"
},
"lint-staged": {
"**/*.{js,mjs,ts}": [
"eslint --cache --ext .tsx,.ts,.js,.jsx,.md .",
"prettier --write",
"jest --findRelatedTests --coverage=false"
]
}
}