-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "node-js-appt-with-posgresql-and-sequelize",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon app.js",
"test": "mocha --reporter progress \"test/**/*Spec.js\"",
"lint": "eslint app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tovmassian/node-js-app.git"
},
"author": "Khachatur Tovmasyan",
"license": "ISC",
"bugs": {
"url": "https://github.com/tovmassian/node-js-app/issues"
},
"homepage": "https://github.com/tovmassian/node-js-app#readme",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"express": "4.16.4",
"jsonwebtoken": "8.3.0",
"morgan": "1.9.1",
"nodemon": "1.18.6",
"path": "0.12.7",
"pg": "7.6.1",
"pg-hstore": "2.3.2",
"sequelize": "4.41.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
},
"nodemonConfig": {
"restartable": "rs",
"igonre": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4000
}
}
}