-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "fastify-appwrite",
"homepage": "https://github.com/Dev-Manny/fastify-appwrite",
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
"version": "1.0.7",
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/Dev-Manny/fastify-appwrite"
},
"scripts": {
"test": "npm run unit && npm run test:typescript",
"lint": "standard && npm run lint:typescript",
"lint:typescript": "ts-standard",
"test:typescript": "tsd",
"unit": "tap test/**/*.test.js"
},
"keywords": [
"fastify",
"appwrite"
],
"author": "Manasseh Abiodun",
"license": "MIT",
"types": "index.d.ts",
"dependencies": {
"axios": "^0.21.1",
"fastify": "^3.20.1",
"fastify-autoload": "^3.8.0",
"fastify-plugin": "^3.0.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^15.0.0",
"fastify-tsconfig": "^1.0.1",
"standard": "^16.0.3",
"tap": "^15.0.9",
"ts-standard": "^10.0.0",
"tsd": "^0.15.1",
"typescript": "^4.2.4"
},
"tsd": {
"directory": "test"
}
}