-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "sysdoc_backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --ignore-watch node_modules --exit-child -- ./src/server.ts",
"lint": "eslint src --max-warnings=0",
"prepare": "husky install",
"migrate": "prisma migrate dev"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix"
]
},
"dependencies": {
"@prisma/client": "^3.3.0",
"aws-sdk": "^2.1013.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.3",
"multer-s3": "^2.10.0",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.10",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"prisma": "^3.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}