-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 898 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 898 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
{
"name": "apollo",
"version": "1.0.0",
"description": "",
"main": "Bin/Main.js",
"scripts": {
"Start-Main-Job": "node --no-deprecation Bin/Main.js",
"Build-And-Run": "node path.js && npm run build && npm run Start-Main-Job",
"RunAll": "npm update && npm i && node path.js && npm run build && npm run Start-Main-Job",
"build-full": " npm i && npm i --save-dev @types/node && node path.js && tsc -b --verbose",
"build": "tsc -b --verbose",
"start": "node --trace-deprecation Bin/Main.js"
},
"author": "VTIL-LLc",
"license": "Apache-2.0",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^5.0.3",
"@types/node": "^25.0.2",
"@types/spdy": "^3.4.4",
"prettier": "^3.6.2",
"typescript": "^6.0.3"
},
"dependencies": {
"body-parser": "^2.2.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"spdy": "^4.0.2"
}
}