-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
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
42
43
44
{
"name": "sms-api",
"version": "1.0.0",
"description": "an sms management application to allow users send/receive message, as well as add/delete contact",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"test": "NODE_ENV=test babel-node ./node_modules/mocha/bin/_mocha ./tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ugonnathelma/SMS-api.git"
},
"keywords": [
"sms",
"api"
],
"author": "Ugonna Thelma",
"license": "MIT",
"bugs": {
"url": "https://github.com/ugonnathelma/SMS-api/issues"
},
"homepage": "https://github.com/ugonnathelma/SMS-api#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"firebase": "^5.5.2",
"mocha": "^5.2.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.39.0",
"supertest": "^3.3.0"
},
"babel": {
"presets": [
"env"
]
}
}