generated from gutsyphilip/node-starter
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 2.07 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
{
"name": "node-starter",
"version": "1.0.0",
"description": "A simple node project starter",
"main": "index.js",
"keywords": [],
"author": "Philip Obosi <philip.c.obosi@gmail.com>",
"license": "ISC",
"scripts": {
"test": "flow check && mocha -r @babel/register tests",
"build": "npm run build:lib",
"build:lib": "babel src/ -d lib/ --copy-files",
"build:flow": "flow-copy-source -v src/ lib/",
"postinstall": "npm run build",
"start": "node -r @babel/register lib/index.js",
"start:full": "npm run build && npm run start",
"dev": "nodemon",
"debug": "nodemon --inspect src/index.js --exec babel-node",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-flow": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-eslint": "^9.0.0",
"chai": "^4.2.0",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^3.0.1",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"flow-bin": "^0.77.0",
"flow-copy-source": "^2.0.9",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"prettier": "^1.19.1"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"jsend": "^1.1.0",
"moment": "^2.24.0",
"mongoose": "^5.8.9",
"mongoose-autopopulate": "^0.11.0",
"morgan": "^1.9.1",
"redis": "^3.0.2",
"uuid": "^3.3.3",
"winston": "^3.0.0"
}
}