-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.26 KB
/
package.json
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
{
"name": "fw_service_template",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:3sidedcube/fw_service_template.git",
"author": "owenjs <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint app --fix",
"build": "babel app/src --extensions .js,.ts -d dist",
"start": "yarn run build && node dist/app.js",
"restart": "rimraf dist && yarn run start",
"dev": "nodemon --exec yarn run restart",
"test": "NODE_ENV=test jest --watchAll",
"docs": "serve docs"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.85.0",
"@aws-sdk/s3-request-presigner": "^3.85.0",
"@koa/cors": "^3.3.0",
"@types/uuid": "^8.3.4",
"adm-zip": "^0.5.9",
"archiver": "^5.3.1",
"axios": "^0.27.2",
"bunyan": "^1.8.15",
"config": "^3.3.7",
"csvtojson": "^2.0.10",
"jpeg-autorotate": "^8.0.1",
"json2csv": "^5.0.7",
"jsonapi-serializer": "3.5.6",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-mount": "^4.0.0",
"koa-router": "^10.1.1",
"koa-simple-healthcheck": "^0.0.1",
"mongoose": "^6.6.0",
"pdfkit": "^0.13.0",
"redis": "^4.2.0",
"shp-write": "^0.3.2",
"sparkpost": "^2.1.4",
"stream-buffers": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@3sidedcube/prettier-config": "^1.0.0",
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/bunyan": "^1.8.8",
"@types/config": "^0.0.41",
"@types/jest": "^27.4.1",
"@types/koa": "^2.13.4",
"@types/koa-mount": "^4.0.1",
"@types/koa-router": "^7.4.4",
"@types/node": "^17.0.23",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"prettier": "@3sidedcube/prettier-config",
"engines": {
"node": "~20"
}
}