forked from rvansant2/node-app-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.18 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
{
"name": "node-app-api",
"version": "0.0.0",
"private": true,
"keywords": ["nodejs", "api", "starter"],
"author": "rvansant2",
"license": "MIT",
"scripts": {
"start": "nodemon build/app.js",
"dev": "nodemon build/app.js",
"build": "babel src -d build --copy-files",
"watch": "babel src -d build --copy-files --watch",
"test": "mocha --require @babel/register src/test",
"lint": "eslint --fix src",
"pretty": "prettier --write --tab-width 2 \"src/**/*.{js,jsx,json}\"",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"npm run pretty",
"npm run lint",
"git add"
]
},
"dependencies": {
"@babel/runtime": "^7.7.7",
"app-root-path": "^3.0.0",
"babel-polyfill": "^6.26.0",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"config": "^1.28.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"debug": "~2.6.3",
"express": "^4.15.5",
"express-validation": "^1.0.3",
"helmet": "^3.23.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.19",
"mongoose": "^5.8.3",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"package.json": "^2.0.1",
"serve-favicon": "^2.4.5",
"stable": "^0.1.6",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-preset-airbnb": "^2.6.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^4.0.1",
"prettier": "^1.19.1"
}
}