forked from frencojobs/vercel-dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "vercel-dart",
"version": "1.1.0",
"description": "Vercel Runtime for Dart serverless functions",
"main": "dist/index.js",
"types": "types/index.d.ts",
"author": "Frenco <hey@frenco.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frencojobs/vercel-dart"
},
"files": [
"dist",
"types"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "node build.js",
"postbuild": "cpy src '!**/*.ts' dist",
"prerelease": "yarn build",
"release": "yarn publish",
"vercel-build": "cd web && yarn install && yarn build"
},
"dependencies": {
"execa": "^5.0.0",
"fast-glob": "^3.2.5",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.0.14",
"@types/glob": "^7.1.3",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.22",
"@vercel/build-utils": "^2.8.0",
"@vercel/frameworks": "^0.2.0",
"@vercel/routing-utils": "^1.9.2",
"cpy-cli": "^3.1.1",
"esbuild": "^0.8.45",
"import-sort-style-absolute": "^1.0.1",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "absolute",
"parser": "typescript"
}
}
}