-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.37 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
{
"name": "carrentalapp",
"version": "1.0.0",
"description": "Car rental app",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --ignore-unknown --config .prettierrc --write '**/*.{js,ts,json}'",
"test": "jest -i --verbose --coverage --collectCoverageFrom='src/**/*.ts'",
"test:watch": "jest -i --watch",
"build": "tsc",
"start": "node build/app.js",
"dev": "tsnd --rs --exit-child --watch='./src/**/*.ts' --respawn --transpile-only src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakubburzynski/carRentalApp.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubburzynski/carRentalApp/issues"
},
"homepage": "https://github.com/jakubburzynski/carRentalApp#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.209.0",
"@fastify/auth": "^4.1.0",
"@fastify/cookie": "^8.3.0",
"@fastify/helmet": "^10.1.0",
"@fastify/multipart": "^7.3.0",
"@fastify/session": "^10.0.2",
"@fastify/type-provider-typebox": "^2.3.0",
"@prisma/client": "^4.7.1",
"@sendgrid/mail": "^7.7.0",
"@sinclair/typebox": "^0.24.46",
"argon2": "^0.30.1",
"bytes": "^3.1.2",
"env-schema": "^5.1.0",
"fastify": "^4.10.2",
"fastify-plugin": "^4.3.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/bytes": "^3.1.1",
"@types/node": "^18.8.5",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"form-data": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.8.3",
"prisma": "^4.7.1",
"sinon": "^14.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"lint-staged": {
"*": [
"npm run lint",
"npm run format"
]
}
}