-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 835 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
{
"name": "word-challenges-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/develop.js",
"start": "node src/develop.js",
"pushnotifmanual": "xcrun simctl push 8B042537-F600-40D2-ABDA-594469ACA79D com.jamiegarner.WordChallenges src/push-notifications/ios/DefinitionsPush.apns",
"pushnotifscript": "node src/push-notifications/ios/schedule-cron-job.js"
},
"engines": {
"node": "12.x"
},
"devDependencies": {
"node-fetch": "^2.6.0",
"nodemon": "^2.0.3"
},
"dependencies": {
"apn": "^2.2.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"lodash": "^4.17.15",
"mongodb": "^3.5.2",
"mongoose": "^5.7.5",
"node-cron": "^2.0.3",
"pg": "^7.12.0"
}
}