-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.07 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
{
"name": "dataset-api",
"version": "0.0.1",
"description": "",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.test.json && cross-env TS_NODE_FILES=true tap test/**/*.test.ts",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"dev": "rm -rf dist && tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobra-dev/dataset-api.git"
},
"keywords": [],
"author": "Makuza Mugabo Verite <[email protected]> (https://veritem.me/)",
"bugs": {
"url": "https://github.com/kobra-dev/dataset-api/issues"
},
"homepage": "https://github.com/kobra-dev/dataset-api#readme",
"dependencies": {
"@aws-sdk/types": "^3.15.0",
"@types/validator": "^13.1.3",
"aws-sdk": "^2.903.0",
"fastify": "^3.0.0",
"fastify-autoload": "^3.3.1",
"fastify-cli": "^2.11.0",
"fastify-cors": "^6.0.1",
"fastify-env": "^2.1.1",
"fastify-file-upload": "^3.0.0",
"fastify-multipart": "^4.0.5",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.0",
"fastify-swagger": "^4.7.0",
"firebase-admin": "^9.8.0",
"uuid": "^8.3.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/busboy": "0.2.3",
"@types/node": "15.3.0",
"@types/tap": "15.0.1",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"concurrently": "6.1.0",
"cross-env": "7.0.3",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"fastify-tsconfig": "1.0.1",
"prettier": "2.3.0",
"tap": "15.0.9",
"typescript": "4.3.2"
}
}