forked from Yousuf-Basir/push-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 686 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 686 Bytes
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
{
"name": "push-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^11.9.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^3.1.7",
"supertest": "^6.3.3"
}
}