-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 821 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 821 Bytes
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
{
"name": "jspmbackend",
"private": true,
"version": "1.0.0",
"description": "",
"main": "./dist/lib/index.js",
"scripts": {
"fixcrlf": "find . -type f -print0 | xargs -0 dos2unix",
"cleanbuild": "rimraf ./dist && tsc",
"buildwatch": "rimraf ./dist && tsc -w",
"build": "tsc",
"vercel": "vercel"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/semver": "^7.5.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.3",
"vercel": "^31.0.1"
},
"dependencies": {
"@octokit/app": "^13.1.8",
"adm-zip": "^0.5.10",
"cors": "^2.8.5",
"deta": "^1.1.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"semver": "^7.5.3",
"undici": "^5.22.1",
"zod": "^3.21.4"
}
}