-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "backend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.6.2",
"babel-plugin-istanbul": "^5.2.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.13",
"morgan": "^1.9.1",
"rotating-file-stream": "^1.4.4",
"sinon-test": "^2.4.1",
"validator": "^12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@types/chai-as-promised": "^7.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"coveralls": "^3.0.7",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.1",
"mocha-logger": "^1.0.6",
"nodemon": "^1.19.3",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"scripts": {
"start": "node index.js",
"start-local": "nodemon --exec babel-node ./index.js",
"prod": "node dist/api.bundle.js env NODE_ENV=production",
"build": "webpack",
"test": "env NODE_ENV=test nyc --reporter=html mocha ./src/tests --recursive --exit",
"test-debug": "env NODE_ENV=test nyc --reporter=text mocha ./src/tests --recursive --exit --inspect-brk",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"eslint:win": "eslint.cmd ./",
"eslint-fix:win": "eslint.cmd ./ --fix",
"eslint:unix": "eslint ./",
"eslint-fix:unix": "eslint ./ --fix"
},
"nyc": {
"require": [
"@babel/register"
],
"include": [
"src/**/*.js"
],
"exclude": [
"**/node_modules/**",
"**/tests/**"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/OngDev/backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OngDev/backend/issues"
},
"homepage": "https://github.com/OngDev/backend#readme"
}