forked from timolinn/node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.49 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.49 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
80
81
82
{
"name": "node-starter",
"version": "1.0.0",
"description": "Boilerplate for Node-Express app with Babel 7",
"main": "dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"serve": "npm run build && npm start",
"dev": "babel-watch src/index.js",
"watch": "nodemon --exec babel-node src/index.js",
"build": "./node_modules/.bin/babel ./src --out-dir ./dist --ignore node_modules",
"prettier": "prettier --config ./.prettierrc --write \"src/**/**/*.js\"",
"test": "jest",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"create:logs": "node ./scripts/logs.js",
"postinstall": "npm run create:logs",
"heroku-postbuild": "rm -rf ./dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timolinn/node-starter.git"
},
"author": "Timothy Onyiuke <timothyonyiuke@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timolinn/node-starter/issues"
},
"homepage": "https://github.com/timolinn/node-starter#readme",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"acl": "^0.4.11",
"app-root-path": "^2.1.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"html-to-text": "^4.0.0",
"http-errors": "^1.7.1",
"jsonwebtoken": "^8.3.0",
"juice": "^5.0.1",
"lodash": "^4.17.13",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mongoose": "^5.7.5",
"mongoose-autopopulate": "^0.9.1",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local-mongoose": "^5.0.1",
"slugs": "^0.1.3",
"uuid": "^3.3.2",
"validator": "^10.9.0",
"winston": "^3.1.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/express": "^4.16.1",
"@types/joi": "^14.3.1",
"@types/lodash": "^4.14.118",
"@types/mongoose": "^5.3.1",
"@types/node": "^10.12.24",
"@types/passport-jwt": "^3.0.1",
"apidoc": "^0.17.7",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-watch": "^7.0.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"nodemon": "^1.18.10",
"prettier": "^1.15.1"
}
}