-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "quick-server",
"version": "1.0.0",
"description": "Boiler plate server for NodeJS",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js dist/",
"seed": "npm-run md-seed run",
"test": "mocha --recursive --exit --timeout 90000 ./test///*.js",
"test:unit": "mocha --recursive --exit --timeout 90000 ./test/unit//.js",
"test:api:debug": "mocha --recursive --exit --inspect-brk ./test/unit//.js --timeout 90000",
"coverage": "istanbul cover _mocha test///*.js -- --require babel-register",
"migration": "node database/migration.js",
"dev": "webpack -wd"
},
"repository": {
"type": "git",
"url": "https://github.com/dejibimbolaAyo/quick-server"
},
"author": "Abimbola Ayodeji",
"license": "MIT",
"dependencies": {
"app-root-path": "^2.2.1",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"g": "^2.0.1",
"jsonwebtoken": "^8.4.0",
"moment": "^2.29.4",
"mongoose": "^5.6.4",
"mongoose-audit": "^1.0.0",
"npm-check-updates": "^3.1.20",
"npm-run": "^5.0.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@types/passport-local": "^1.0.33",
"babel-cli": "^6.26.0",
"babel-core": "^6.0.20",
"babel-env": "^2.4.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-regenerator-runtime": "^6.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.3.0",
"eslint-plugin-babel": "^5.1.0",
"isparta": "^4.1.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"proxyquire": "^2.1.0",
"sinon": "^4.0.0",
"sinon-chai": "^3.3.0",
"sinon-chai-in-order": "^0.1.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}