-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "big-cheese",
"version": "1.4.2",
"description": "API service for big deals",
"main": "app.js",
"scripts": {
"forever": "forever app.js",
"start": "node app.js",
"lint": "eslint .",
"test": "NODE_ENV=test nyc mocha --no-timeouts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yarphen/big-cheese.git"
},
"author": "yarphen",
"license": "MIT",
"bugs": {
"url": "https://github.com/yarphen/big-cheese/issues"
},
"homepage": "https://github.com/yarphen/big-cheese#readme",
"dependencies": {
"body-parser": "^1.18.3",
"config": "^2.0.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"forever": "^0.15.3",
"jsonwebtoken": "^8.3.0",
"nodemailer": "^4.6.7",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"sequelize": "^4.38.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha": "^5.1.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"proxyquire": "^2.0.1"
}
}