-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "assetmapping-backend",
"version": "1.0.0",
"description": "Backend service for Asset Mapping application with sync, validation, and image processing",
"workspaces": [
"packages/*"
],
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "npm run build:types && tsc",
"build:types": "npm run build --workspace @assetmapping/shared-types",
"start": "node dist/server.js",
"migrate": "npx drizzle-kit migrate",
"lint": "eslint . && prettier -c .",
"format": "eslint . --fix && prettier -w ."
},
"keywords": [
"asset-mapping",
"express",
"typescript",
"redis"
],
"author": "",
"license": "MIT",
"dependencies": {
"@assetmapping/shared-types": "file:packages/shared-types",
"@aws-sdk/client-s3": "^3.699.0",
"@aws-sdk/s3-request-presigner": "^3.699.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.44.7",
"express": "^4.18.2",
"helmet": "^7.1.0",
"postgres": "^3.4.7",
"redis": "^4.6.11",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/express": "^4.17.21",
"@types/node": "^20.19.25",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"drizzle-kit": "^0.31.6",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"prettier": "^3.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.46.4"
}
}