-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.36 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
47
48
49
50
{
"name": "peekabook",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/team-peekabook/Peekabook-server.git",
"author": "hyeonjeong Park <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"db:pull": "npx prisma db pull",
"postinstall": "prisma generate",
"prepare": "husky install",
"test": "yarn mocha ./test/* -r ts-node/register -exit"
},
"dependencies": {
"@aws-sdk/abort-controller": "^3.374.0",
"@aws-sdk/client-s3": "^3.304.0",
"@prisma/client": "^5.4.2",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"firebase-admin": "^12.1.0",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nodemailer": "^6.9.1",
"prisma": "^5.4.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/express": "^4.17.19",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/mocha": "^10.0.1",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/node": "^20.8.6",
"@types/supertest": "^2.0.12",
"chai": "^4.3.7",
"husky": "^8.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}