This repository has been archived by the owner on Nov 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "node-api-boilerplate",
"version": "1.0.0",
"description": "NodeJS Api Boilerplate",
"main": "./src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./src/app.js --exec babel-node --harmony",
"lint": "./node_modules/.bin/eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dizefurkan/node-api-boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dizefurkan/node-api-boilerplate/issues"
},
"homepage": "https://github.com/dizefurkan/node-api-boilerplate#readme",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"joi": "^13.4.0",
"jsonwebtoken": "^8.2.0",
"morgan": "^1.9.0",
"nodemon": "^1.17.2",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.37.1",
"sequelize-cli": "^2.7.0",
"serve-static": "^1.13.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
}
}