-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "node-first-api",
"version": "1.0.0",
"description": "This is a solo coding to learning node programing language",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "set NODE_ENV=dev&& nodemon src",
"start-production": "node src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/condini-mastheus/node-first-api.git"
},
"keywords": [
"learning",
"node",
"api"
],
"author": "Matheus Condini",
"license": "ISC",
"bugs": {
"url": "https://github.com/condini-mastheus/node-first-api/issues"
},
"homepage": "https://github.com/condini-mastheus/node-first-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"express": "^4.16.3",
"fs": "^0.0.1-security",
"helmet": "^3.12.0",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.0.11",
"path": "^0.12.7"
},
"devDependencies": {
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0"
},
"peerDependencies": {
"eslint": "^4.19.0"
}
}