This repository has been archived by the owner on Oct 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "hiberapi",
"version": "1.0.0",
"description": "An API for HiberFile.",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "nodemon --watch src/ --exec 'npm run build && npm run start' -e ts",
"test": "tap test/**/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prisma:dev": "func() { if [ ${#1} = 0 ]; then echo \"Please provide a name for the migration.\nExample: npm run prisma:dev -- 'commit example'\"; else npx prisma migrate dev --name \"$1\"; fi }; func ",
"prisma:generate": "npx prisma generate",
"prisma:deploy": "npx prisma migrate deploy",
"tsc": "tsc",
"build": "npm run prisma:generate && npm run tsc",
"start": "fastify start -l info dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthur-fontaine/hiberapi.git"
},
"author": "Arthur Fontaine",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/arthur-fontaine/hiberapi/issues"
},
"homepage": "https://github.com/arthur-fontaine/hiberapi#readme",
"dependencies": {
"@prisma/client": "^3.4.1",
"@types/busboy": "^0.2.3",
"@types/node": "^14.14.31",
"@types/node-cron": "^3.0.0",
"@types/nodemailer": "^6.4.4",
"@types/pump": "^1.1.1",
"aws-sdk": "^2.850.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"fastify": "^3.0.0",
"fastify-autoload": "^3.8.0",
"fastify-cli": "^2.8.0",
"fastify-cors": "^6.0.2",
"fastify-jwt": "^3.1.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.0",
"fastify-swagger": "^4.8.3",
"file-chunked": "^1.0.4",
"mariadb": "^2.5.4",
"node-cron": "^3.0.0",
"nodemailer": "^6.6.5",
"pump": "^3.0.0",
"xss": "^1.0.10"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"fastify-tsconfig": "^1.0.1",
"prettier": "^2.2.1",
"prisma": "^3.4.1",
"tap": "^14.11.0",
"typescript": "4.1.3"
}
}