-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.73 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
{
"name": "core-api",
"description": "Spec Core APi",
"version": "1.0.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node ./src/index.ts",
"scrap": "ts-node ./src/scrap.ts",
"clean": "rimraf dist",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "run-s clean format build:main",
"build:main": "tsc -p tsconfig.json"
},
"dependencies": {
"@aws-sdk/hash-node": "^3.168.0",
"@aws-sdk/protocol-http": "^3.168.0",
"@aws-sdk/s3-request-presigner": "^3.168.0",
"@aws-sdk/url-parser": "^3.168.0",
"@spec.types/spec": "^0.0.11",
"aws-sdk": "^2.1213.0",
"chalk": "4.1.0",
"connect": "^3.6.6",
"cors": "^2.8.5",
"eetase": "^4.0.0",
"express": "^4.16.3",
"express-fileupload": "^1.4.0",
"install": "^0.13.0",
"morgan": "^1.7.0",
"pg-format": "^1.0.4",
"sc-errors": "^2.0.1",
"scc-broker-client": "^8.1.0",
"serve-static": "^1.13.2",
"socketcluster-client": "^16.1.1",
"socketcluster-server": "^16.2.1",
"uuid4": "^2.0.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.4.1",
"@types/node": "^18.0.3",
"@types/scc-broker-client": "^8.0.0",
"@types/socketcluster-server": "^16.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.11",
"ts-node": "^10.8.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}