-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "pattern-challenge",
"version": "1.0.0",
"description": "Implementing `Node.js Design Patterns`, Mario Casciaro.",
"main": "index.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"test": "jest",
"lint": "eslint . *.js",
"lint:fix": "eslint --fix . *.js"
},
"keywords": [],
"author": "Matheus Galdino <matheus.galdino@hotmail.com | matheus.galdino@concrete.com.br>",
"bugs": {
"url": "https://github.com/barbaromatrix/pattern-challenge/issues"
},
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.13.9"
},
"devDependencies": {
"jest": "^22.1.2",
"nodemon": "^1.14.11",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
}
}