generated from BuildForSDG/js-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "js-starter",
"version": "0.0.1",
"description": "A boilerplate for starting js code",
"keywords": [
"Team-007",
"BackEnd API"
],
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node ./dist/app.js",
"serve": "nodemon ./dist/app.js",
"watch": "watch 'npm run build' src",
"prebuild": "rimraf dist",
"build": "babel src -d dist --ignore '**/*.test.js'",
"postbuild": "mkdir dist/logs && touch dist/logs/access.log",
"heroku-postbuild": "npm run build",
"test": "jest",
"test:watch": "jest --watch --runInBand --detectOpenHandles --unhandled-rejections=strict",
"test:cover": "jest --coverage --runInBand --detectOpenHandles --unhandled-rejections=strict",
"lint": "eslint \"src/**/*.js\""
},
"author": {
"name": "Team-007",
"email": "buildforsdg@andela.com"
},
"homepage": "https://github.com/BuildForSDG/Team-007-BackEnd#readme",
"repository": {
"type": "git",
"url": "https://github.com/BuildForSDG/Team-007-BackEnd.git"
},
"bugs": {
"url": "https://github.com/BuildForSDG/Team-007-BackEnd/issues"
},
"license": "MIT",
"dependencies": {
"app-root-path": "3.0.0",
"bcrypt": "4.0.1",
"body-parser": "1.19.0",
"chalk": "4.0.0",
"compression": "1.7.4",
"cors": "2.8.5",
"debug": "4.1.1",
"express": "4.17.1",
"jsonwebtoken": "8.5.1",
"mongodb": "3.5.7",
"morgan": "1.10.0",
"nodemon": "2.0.3",
"redis": "3.0.2",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@shelf/jest-mongodb": "1.1.5",
"babel-jest": "25.4.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"jest": "25.4.0",
"rimraf": "3.0.2",
"supertest": "4.0.2",
"watch": "1.0.2"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node-modules/**/node_modules"
],
"delay": "5000",
"env": {
"NODE_ENV": "development",
"PORT": 4000
}
}
}