-
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.95 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.95 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": "recognizer-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon --watch 'src/' --exec 'ts-node -r tsconfig-paths/register src/server.ts' -e ts",
"dev-windows": "nodemon --watch 'src\\' --exec 'ts-node -r tsconfig-paths\\register src\\server.ts' -e ts",
"build": "tsc && tsc-alias",
"studio": "npx prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devArchetype/recognizer-backend.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devArchetype/recognizer-backend/issues"
},
"homepage": "https://github.com/devArchetype/recognizer-backend#readme",
"devDependencies": {
"@mermaid-js/mermaid-cli": "9.1.7",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.7",
"@types/sharp": "^0.31.1",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prisma": "^4.8.1",
"prisma-erd-generator": "1.2.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@prisma/client": "^4.8.1",
"axios": "^1.3.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.0",
"sharp": "^0.31.3",
"validator": "^13.7.0"
}
}