-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 KB
/
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
41
{
"name": "VLCTechHub-app-push-notifications-server",
"version": "0.0.1",
"description": "A simple node server that exposes a basic API to save user tokens and lets you send notifications to them",
"repository": {
"type": "git",
"url": "https://github.com/marcelkalveram/VLCTechHub-app-push-notifications-server"
},
"author": "Marcel Kalveram",
"license": "MIT",
"scripts": {
"start": "node app.js",
"test": "mocha --reporter spec ./test/**/*",
"postinstall": "npm rebuild node-sass"
},
"dependencies": {
"body-parser": "^1.17.2",
"chalk": "^2.1.0",
"compression": "^1.7.0",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"expo-server-sdk": "^2.3.3",
"express": "^4.15.4",
"express-status-monitor": "^1.0.0",
"express-validator": "^3.2.1",
"mongoose": "^4.11.7",
"morgan": "^1.8.2",
"node-fetch": "^2.2.0",
"node-sass-middleware": "^0.11.0",
"pug": "^2.0.0-rc.3"
},
"devDependencies": {
"chai": "^4.1.1",
"growl": ">=1.10.0",
"mocha": "^3.5.0",
"sinon": "^7.1.1",
"sinon-mongoose": "^2.2.1",
"supertest": "^3.0.0"
}
}