-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 916 Bytes
/
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
{
"name": "nickfury",
"version": "1.0.0",
"description": "TwitterX's backend written in NodeJS (express+firestore)",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"tsc": "./node_modules/typescript/bin/tsc",
"build": "tsc",
"dev": "py dev.py"
},
"keywords": [
"TwitterX"
],
"author": "Mohammed Sadiq",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/humps": "^2.0.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"typescript": "^4.7.3"
},
"dependencies": {
"axios": "^0.26.1",
"express": "^4.17.3",
"firebase-admin": "^10.2.0",
"getstream": "^8.0.0",
"humps": "^2.0.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.2",
"uuid": "^8.3.2"
},
"engines": {
"npm": "8.10.0",
"node": "17.3.1"
}
}