-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "drawref-backend",
"version": "0.0.1",
"description": "Backend for a drawing reference webapp.",
"main": "index.js",
"repository": "https://github.com/DanielOaks/drawref-backend",
"author": "Daniel Oaks <[email protected]>",
"license": "ISC",
"private": true,
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"migrate": "node-pg-migrate up"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.614.0",
"@types/cors": "^2.8.17",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.11",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"glob": "^11.0.0",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"node-pg-migrate": "^6.2.2",
"paseto": "^3.1.4",
"pg": "^8.11.3",
"postgres": "^3.4.3",
"url-join": "^5.0.0",
"uuidv7": "^1.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"prettier": "^3.2.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}