-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 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
69
70
71
{
"name": "article-excersice",
"version": "1.0.0",
"description": "Articles node js REST Api",
"main": "server.js",
"scripts": {
"unit:test": "env NODE_ENV=test mocha tests/bootstrap.js tests/unit/* --recursive -t 30000 --exit",
"start": "node ./server.js",
"start:dev": "./node_modules/.bin/nodemon ./server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-specific": "eslint $PATH"
},
"author": "Carlos Guillermo Antico",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"config": "^3.1.0",
"continuation-local-storage": "^3.2.1",
"cors": "^2.8.5",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.6.1",
"eslint-plugin-react-hooks": "^1.6.0",
"express": "^4.16.4",
"helmet": "^3.16.0",
"http-status-codes": "^1.3.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.0",
"mongoose": "^5.5.2",
"mongoose-type-url": "^1.0.5",
"morgan": "^1.9.1",
"node-uuid": "^1.4.8",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"rootpath": "^0.1.2",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0"
},
"_moduleAliases": {
"app": "./app",
"communications": "./communications",
"devUtilities": "./developerUtilities",
"lib": "./lib",
"services": "./services",
"@devConsole": "./developerUtilities/devConsole",
"@authenticate": "app/middlewares/authenticate"
},
"engines": {
"node": ">=0.10.5"
}
}