-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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-nest",
"version": "0.0.7",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"repository": {
"url": "https://github.com/dongwa/vercel-nest"
},
"scripts": {
"build": "node build.mjs",
"prepublishOnly": "npm run release",
"release": "npm run build",
"lint": "eslint --ext .js,.ts,.json ./",
"fix": "eslint --ext .js,.ts,.json ./ --fix",
"format": "prettier --config ./.prettierrc --write \"./**/*.{ts,js,json}\" ",
"test": "jest",
"ver": "standard-version",
"vermi": "standard-version -r minor",
"verma": "standard-version -r major",
"verp": "standard-version -p beat"
},
"author": "dongwa",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vercel/build-utils": "7.5.1",
"build": "^0.1.4",
"esbuild": "^0.20.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.3",
"prettier": "^2.6.2",
"ts-jest": "^28.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/glob": "^7.2.0",
"@vercel/error-utils": "^2.0.2",
"@vercel/nft": "^0.26.2",
"@vercel/node-bridge": "^2.2.1",
"@vercel/routing-utils": "^1.13.2",
"consola": "^2.15.3",
"execa": "5.1.1",
"fs-extra": "^10.1.0",
"jiti": "^1.19.1",
"path-to-regexp": "^6.2.1"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}