You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
663 B
33 lines
663 B
{
|
|
"name": "daily-notification-test-api",
|
|
"version": "1.0.0",
|
|
"description": "Test API server for Daily Notification Plugin validation",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"test": "jest",
|
|
"demo": "node test-demo.js"
|
|
},
|
|
"keywords": [
|
|
"test",
|
|
"api",
|
|
"notification",
|
|
"capacitor",
|
|
"plugin"
|
|
],
|
|
"author": "Matthew Raymer",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.1",
|
|
"jest": "^29.7.0",
|
|
"node-fetch": "^2.7.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|
|
|