-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.45 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.45 KB
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
79
80
81
82
{
"name": "@scvo/http",
"version": "0.0.1",
"description": "The HTTP entry point to the SCVO Router",
"main": "build/index.js",
"engines": {
"node": "22"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"start": "npm run build; node build/index.js",
"dev": "npm run build && node --inspect build/index.js",
"deploy-dispatch": "gcloud app deploy dispatch.yaml",
"build": "npm run build-clean && npm run build-typescript",
"build-clean": "rm -rf build && mkdir build",
"build-typescript": "./node_modules/.bin/tsc",
"test-router": "cd ../scvo-router; npm run compile; cd ../http; yarn add ../scvo-router; npm run dev",
"push-to-prod": "git checkout production && git pull && git pull && git pull origin development && git push && git checkout development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scvodigital/http.git"
},
"keywords": [
"SCVO",
"Router",
"Web",
"Server",
"HTTP"
],
"author": "Matthew Wilkes (SCVO)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/scvodigital/http/issues"
},
"homepage": "https://github.com/scvodigital/http#readme",
"dependencies": {
"@elastic/datemath": "^4.0.2",
"@scvo/json-inc": "^0.0.15",
"@scvo/router": "1.2.95",
"@types/chokidar": "^1.7.5",
"@types/cookie": "^0.3.1",
"@types/globby": "^8.0.0",
"@types/json-stringify-safe": "^5.0.0",
"@types/jsonata": "^1.3.1",
"@types/mathjs": "^6.0.5",
"@types/mime": "^2.0.0",
"@types/node": "^10.11.7",
"@types/pako": "^1.0.0",
"@vlasky/mysql": "^2.18.6",
"arr-diff": "^4.0.0",
"bristles": "0.0.16",
"chokidar": "^2.0.4",
"clayhandlebars": "git+https://github.com/scvodigital/handlebars",
"cookie": "^0.3.1",
"deep-diff": "^1.0.2",
"dot-object": "^1.7.0",
"firebase-admin": "6.1.0",
"get-body": "^1.0.3",
"globby": "^8.0.1",
"handlebars": "4.1.2",
"is-gzip": "^2.0.0",
"json-6": "^1.0.2",
"json-e": "git+https://github.com/scvodigital/json-e",
"json-stringify-safe": "^5.0.1",
"jsonata": "^1.6.4",
"markdown": "^0.5.0",
"mathjs": "^7.0.0",
"mime": "^2.3.1",
"moment": "^2.22.2",
"moment-timezone": "^0.5.32",
"pako": "^1.0.6",
"source-map-support": "^0.5.9",
"string": "^3.3.3",
"striptags": "^3.2.0"
},
"devDependencies": {
"@types/jsforce": "^1.11.5",
"@types/mysql": "^2.15.27",
"typescript": "^5.3.3"
}
}