This repository was archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "quick-credit",
"version": "1.0.0",
"description": "",
"main": "server/app.js",
"scripts": {
"create-tables": "babel-node ./server/models/dbConnection createAllTables",
"test": "nyc --reporter=html --reporter=text --reporter=lcov mocha --timeout 10000 ./server/test/**.test.js -r @babel/register",
"start": "node -r esm server/app.js",
"dev": "nodemon --watch . --exec babel-node -- server/app",
"setup": "npm-run-all -p start create-tables",
"seed-user-table": "babel-node ./server/helpers/seed seed",
"type": "module",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"nyc": "nyc --reporter=lcov npm run test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debbsefe/Quick-Credit.git"
},
"author": "Mamus Eferha",
"license": "ISC",
"bugs": {
"url": "https://github.com/debbsefe/Quick-Credit/issues"
},
"homepage": "https://github.com/debbsefe/Quick-Credit#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"babel-watch": "^7.0.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"make-runnable": "^1.3.6",
"mocha": "^8.1.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"path": "^0.12.7",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.4",
"swagger-ui-express": "^4.1.4"
}
}