-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "twitter_gram",
"version": "1.0.0",
"description": "A mock twitter api which posseses most of the core features of twitter.",
"main": "index.js",
"scripts": {
"dev_build": "tsc",
"dev_start": "nodemon build/app.js",
"start": "node build/app.js",
"dev": "ts-node-dev --respawn --transpile-only app.ts | pino-pretty -c -t"
},
"keywords": [],
"author": "Ifeoluwa Olubo",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1043.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.5.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"multer": "^1.4.3",
"mysql2": "^2.3.3-rc.0",
"nanoid": "^3.1.30",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"pino": "^7.1.0",
"pino-pretty": "^7.2.0",
"sequelize": "^6.9.0",
"sequelize-cli": "^6.3.0",
"swagger-ui-express": "^4.1.6",
"xss-clean": "^0.1.1",
"yamljs": "^0.3.0",
"zod": "^3.11.6"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.176",
"@types/multer": "^1.4.7",
"@types/nanoid": "^3.0.0",
"@types/node": "^16.11.6",
"@types/pino": "^6.3.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"engines": {
"node": "15.x"
}
}