-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.28 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
{
"type": "module",
"name": "little-moments",
"version": "0.0.1",
"description": "Little Moments is a full stack application for the purpose of saving every moment. This is a passion project as a way for my family to save photos of our journey in life together. The purpose is to have complete control over the pictures and data, give access to other fmaily members, and for use for IoT devices such as a digital picture frame.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"nodemon server.js\" \"cd client && npm run dev\""
},
"author": "Austin Merrill",
"license": "ISC",
"dependencies": {
"@aws-amplify/auth": "^6.10.0",
"@aws-sdk/client-cognito-identity-provider": "^3.731.1",
"@aws-sdk/client-s3": "^3.537.0",
"@aws-sdk/s3-request-presigner": "^3.540.0",
"@prisma/client": "^5.11.0",
"amazon-cognito-identity-js": "^6.3.12",
"axios": "^1.6.8",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.0"
},
"devDependencies": {
"@tsconfig/node21": "^21.0.1",
"@types/node": "^20.11.30",
"prisma": "^5.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}