-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.87 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
66
{
"name": "acnetify-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"lint": "eslint src --ext .ts",
"seed": "ts-node -r tsconfig-paths/register src/db/seed.ts",
"build": "tsc",
"start": "npm run build && node -r module-alias/register build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google-cloud/firestore": "^7.7.0",
"@google-cloud/storage": "^7.11.1",
"@tensorflow/tfjs-node": "^3.21.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"express-http-context": "^1.2.4",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@faker-js/faker": "^8.4.1",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.11.10",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"_moduleAliases": {
"@controllers": "build/controllers",
"@db": "build/db",
"@interfaces": "build/interfaces",
"@services": "build/services",
"@utils": "build/utils",
"@validators": "build/validators",
"@config": "build/config",
"@schemas": "build/schemas",
"@server": "build/server.js"
}
}