-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.81 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
{
"name": "maintenance-tracker",
"version": "1.0.0",
"description": "Maintenance Tracker App is an application that provides users with the ability to reach out to operations or repairs department regarding repair or maintenance requests and monitor the status of their request.",
"main": "server/index.js",
"scripts": {
"test:dev": "nyc mocha server/tests --timeout 15000 --compilers js:babel-core/register --recursive --exit || true",
"start": "nodemon --exec babel-node --presets=env ./server/index.js",
"lint:dev": "eslint \"server/**/*.js\" index.js --fix || true",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomiwatech/Maintenance-Tracker.git"
},
"author": "Sanni Michael Tomiwa",
"license": "ISC",
"bugs": {
"url": "https://github.com/tomiwatech/Maintenance-Tracker/issues"
},
"homepage": "https://github.com/tomiwatech/Maintenance-Tracker#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"coveralls": "^3.0.1",
"cross-env": "^5.1.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"nyc": "^11.7.3"
},
"dependencies": {
"babel-core": "^6.26.3",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-validation": "^1.0.2",
"express-validator": "^5.2.0",
"joi": "^13.3.0",
"jsonwebtoken": "^8.2.1",
"moment": "^2.22.1",
"morgan": "^1.9.0",
"nodemon": "^1.17.4",
"pg": "^7.4.3"
}
}