-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.55 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.55 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
{
"name": "earthref-fiesta-api",
"version": "1.3.2",
"description": "EarthRef's FIESTA API",
"author": "Rupert Minnett <rminnett@earthref.org>",
"license": "MIT",
"keywords": [],
"private": true,
"engines": {
"node": "14.x"
},
"scripts": {
"public": "rimraf dist/public && copyfiles -u 2 src/public/**/* dist/public && copyfiles -u 2 src/public/**/**/* dist/public",
"libs": "rimraf dist/v1/libs && copyfiles -u 3 src/v1/libs/*.js dist/v1/libs",
"configs": "rimraf dist/v1/configs && copyfiles -u 3 src/v1/configs/* dist/v1/configs && copyfiles -u 3 src/v1/configs/**/* dist/v1/configs && copyfiles -u 3 src/v1/configs/**/**/* dist/v1/configs",
"static": "copyfiles -u 1 src/openapi.yaml dist && npm run public && npm run libs && npm run configs",
"dev": "ts-node-dev --respawn --inspect -r dotenv/config -- src/api.ts",
"build": "npm run static && tsc --pretty",
"start": "node dist/api.js",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts}",
"lint": "eslint . --ext ts --ext js",
"test": "jest"
},
"dependencies": {
"@opensearch-project/opensearch": "^1.0.2",
"@sentry/node": "^10.37.0",
"@sentry/profiling-node": "^10.37.0",
"archiver": "^7.0.1",
"aws-sdk": "^2.951.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"deepdash": "^5.3.9",
"dotenv": "^16.4.5",
"koa": "^2.13.1",
"koa-body": "^2.5.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"openapi-backend": "^4.1.0",
"unzipper": "^0.10.11",
"uuid": "^9.0.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@babel/preset-typescript": "^7.14.5",
"@types/elasticsearch": "^5.0.38",
"@types/koa": "^2.15.0",
"@types/node": "^18.19.24",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"axios": "^1.6.8",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.2"
}
}