forked from penx/remix-google-cloud-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "remix-google-cloud-functions",
"description": "Google Cloud functions request handler for Remix",
"version": "0.0.3",
"license": "MIT",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/penx/remix-google-cloud-functions"
},
"bugs": {
"url": "https://github.com/penx/remix-google-cloud-functions/issues"
},
"scripts": {
"build": "rm -rf build && tsc -b",
"test": "jest"
},
"peerDependencies": {
"@google-cloud/functions-framework": "^3.1.1",
"@remix-run/node": "^1.11.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@google-cloud/functions-framework": "^3.1.1",
"@remix-run/node": "^1.11.1",
"@types/jest": "^28.1.0",
"@types/supertest": "^2.0.10",
"babel-jest": "^28.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"jest": "^28.1.0",
"node-mocks-http": "^1.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"supertest": "^6.0.1",
"typescript": "^4.5.5"
},
"packageManager": "yarn@1.22.19"
}