-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
78 lines (78 loc) · 2.04 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
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
{
"name": "vercel-deno",
"version": "3.1.1",
"description": "Vercel Runtime for Deno serverless functions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Nathan Rajlich <nate@vercel.com>",
"license": "MIT",
"homepage": "https://github.com/TooTallNate/vercel-deno",
"repository": {
"type": "git",
"url": "https://github.com/TooTallNate/vercel-deno.git"
},
"files": [
"dist"
],
"scripts": {
"build": "./build.sh",
"now-build": "next build",
"prepublishOnly": "npm run build",
"test": "jest"
},
"dependencies": {
"@tootallnate/once": "^2.0.0",
"abort-controller": "^3.0.0",
"arg": "^5.0.0",
"fs-extra": "^10.0.1",
"node-fetch": "2",
"promisepipe": "^3.0.0",
"ramda": "^0.27.1",
"shell-args": "^1.0.0",
"yauzl-promise": "^2.1.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/node": "^14.14.27",
"@types/node-fetch": "2",
"@types/ramda": "^0.27.40",
"@types/react": "^17.0.2",
"@types/yauzl-promise": "^2.1.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@vercel/build-utils": "^7.11.0",
"@vercel/frameworks": "^3.0.1",
"@vercel/routing-utils": "^3.1.0",
"eslint": "7.19.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"jest": "^27.1.0",
"next": "^14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^27.0.5",
"typescript": "^4.1.5"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": false,
"isolatedModules": true
}
},
"verbose": false,
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.test.ts"
]
},
"packageManager": "pnpm@8.5.0"
}