-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 730 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 730 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
{
"name": "server",
"version": "init",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"dev": "npm run build && node --env-file=.env build/index.js",
"deploy": "npx vercel",
"deploy-prod": "npx vercel --prod",
"format": "npx prettier --write ."
},
"files": [
"build"
],
"keywords": [],
"author": "itsuki",
"license": "ISC",
"dependencies": {
"@apple/app-store-server-library": "^3.0.0",
"express": "^5.2.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
}
}