This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pos-back",
"version": "1.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"ip": "^1.1.5",
"mongoose": "^5.5.2",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"session-file-store": "^1.2.0",
"validatorjs": "^3.15.1",
"pm2": "^3.5.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2"
},
"scripts": {
"start": "pm2-runtime start ecosystem.config.js --env production && pm2 logs all",
"dev": "pm2-runtime start ecosystem.config.js --env && pm2 logs all",
"stop": "pm2 stop all"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"es6": true,
"browser": true
},
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"brace-style": [
"error",
"stroustrup"
],
"eol-last": [
"error",
"always"
],
"semi": [
1,
"always"
],
"space-before-function-paren": [
"error",
"never"
],
"comma-dangle": [
"error",
"never"
],
"no-unused-vars": [
"error"
],
"no-var": [
"error"
],
"one-var": [
"off"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/danztran/pos-branch-be.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "git+https://github.com/danztran/pos-branch-be/issues"
},
"homepage": "git+https://github.com/danztran/pos-branch-be#readme"
}