-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
34 lines (34 loc) · 900 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
{
"name": "cloud-messaging",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "nodemon --watch src --exec babel-node src/server.js",
"build": "rm -rf dist && babel src -d dist --extensions \".js\" --copy-files",
"lint": "eslint .",
"clean": "rimraf build",
"heroku-postbuild": "npm run build && cd client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"nodemon": "^2.0.20"
},
"dependencies": {
"axios": "^0.27.2",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"firebase-admin": "^11.0.1",
"node-cron": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}