-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "quip-api-v2",
"type": "module",
"main": "index.ts",
"scripts": {
"dev": "tsx watch index.ts",
"build": "tsc",
"postbuild": "node -e \"['dist/public/images/previews', 'dist/public/videos/previews'].forEach(x => require('fs').mkdirSync(x, { recursive:true }))\"",
"prettify": "prettier --write .",
"start": "node --use-strict ./dist/index.js"
},
"license": "ISC",
"dependencies": {
"@fastify/helmet": "^13.0.2",
"@fastify/static": "^9.1.0",
"@fastify/swagger-ui": "^5.2.5",
"bcrypt": "^6.0.0",
"cld": "^2.10.1",
"cloudinary": "^2.9.0",
"fastify": "^5.8.4",
"formzilla": "^4.0.6",
"jsonwebtoken": "^9.0.3",
"mongodb": "^7.1.1",
"mongoose": "9.4.1",
"mongoose-unique-validator": "^6.1.1",
"nodemailer": "^8.0.4"
},
"devDependencies": {
"@fastify/swagger": "^9.7.0",
"@types/babel__core": "^7.20.5",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose-unique-validator": "^6.1.0",
"@types/node": "^25.5.2",
"@types/nodemailer": "^8.0.0",
"dotenv": "^17.4.1",
"json-schema-to-ts": "^3.1.1",
"postinstall-postinstall": "^2.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}