-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "shopline",
"version": "1.0.0",
"description": "This application enables users to buy cheap and affordable Chinese laptops",
"main": "app.js",
"scripts": {
"start": "node_modules/.bin/nodemon app.js --exec babel-node --",
"test": "NODE_ENV=test&& nyc mocha --timeout 20000 --exit",
"generate-lcov": "nyc report --reporter=text-lcov > lcov.info",
"coveralls-coverage": "coveralls < lcov.info",
"coverage": "nyc npm test && npm run generate-lcov && npm run coveralls-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/BagzieGracious/shopline.git"
},
"author": "Bagenda Deogratius Bogere",
"license": "ISC",
"bugs": {
"url": "https://github.com/BagzieGracious/shopline/issues"
},
"homepage": "https://github.com/BagzieGracious/shopline#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.3",
"nyc": "^14.1.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/register": "^7.6.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.7",
"dotenv": "^8.1.0",
"eslint": "^6.5.1",
"mocha": "^6.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.3",
"request": "^2.88.0"
}
}