-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "sms-management-app",
"version": "1.0.0",
"description": "sms-management-system This is a system that manages the user's sms",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/bin/www.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "babel src -d dist",
"dev": "nodemon --watch src --delay 250ms --exec babel-node src/bin/www.js --ignore tests/",
"test": "cross-env NODE_ENV=test nyc --reporter=html mocha --require @babel/register ./src/tests/* --no-deprecation --timeout 1000000 --exit && nyc report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DinmaOtutu/sms-management-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DinmaOtutu/sms-management-app/issues"
},
"homepage": "https://github.com/DinmaOtutu/sms-management-app#readme",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"cors": "^2.8.5",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"helmet": "^3.16.0",
"jsonwebtoken": "^8.5.0",
"mocha": "^6.0.2",
"moment": "^2.24.0",
"mongoose": "^5.4.19",
"mongoose-paginate": "^5.0.3",
"mongoose-unique-validator": "^2.0.2",
"morgan": "^1.9.1",
"nodemon": "^1.18.11",
"nyc": "^13.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-plugin-add-module-exports": "^1.0.0",
"eslint": "^5.15.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0"
}
}