-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.85 KB
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
{
"name": "rsvst",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "npm run migrate && nodemon --transpile-only src/server.ts",
"start": "node dist/src/server.js",
"start:docker": "docker compose up --build",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install",
"migrate": "npx prisma migrate deploy",
"migrate:docker": "npx prisma migrate deploy -e Docker.env"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.397.0",
"@aws-sdk/lib-storage": "^3.397.0",
"@prisma/client": "^5.2.0",
"@types/bcrypt": "^5.0.0",
"bcrypt": "^5.0.1",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "4.18.1",
"jsonwebtoken": "^9.0.0",
"mime": "^3.0.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.19",
"pino": "^8.14.1",
"pino-http": "^8.4.0",
"pino-pretty": "^10.2.0",
"redis": "^4.6.8"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "4.17.13",
"@types/jest": "^28.1.7",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^16.18.30",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.4",
"prisma": "^5.2.0",
"supertest": "^6.3.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}