-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"name": "codefolio-api",
"version": "1.0.2",
"description": "Back-end API for Codefolio application",
"keywords": [
"codefolio-api",
"api",
"developer",
"mongo",
"express",
"passport"
],
"homepage": "https://github.com/msmfsd/codefolio-api#readme",
"bugs": {
"url": "https://github.com/msmfsd/codefolio-api/issues"
},
"license": "MIT",
"author": "msmfsd",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/msmfsd/codefolio-api.git"
},
"scripts": {
"prod": "pm2 start server.js",
"dev": "nodemon server.js",
"lint": "./node_modules/.bin/eslint server.js api/ config/",
"mocha": "mocha --reporter spec --timeout 5000",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test": "npm run lint && npm run mocha && npm run coverage"
},
"dependencies": {
"async": "^2.0.0-rc.6",
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cors": "^2.7.1",
"crypto": "0.0.3",
"dotenv": "^2.0.0",
"eslint": "^3.0.1",
"express": "^4.14.0",
"express-flash": "0.0.2",
"express-session": "^1.14.0",
"express-validator": "^2.20.8",
"jwt-simple": "^0.5.0",
"lodash": "^4.13.1",
"logger-request": "^3.6.1",
"logging": "^2.0.21",
"method-override": "^2.3.6",
"moment": "^2.14.1",
"mongoose": "^4.5.4",
"multer": "^1.1.0",
"nodemailer": "^2.5.0",
"passport": "^0.3.2",
"passport-jwt": "^1.2.1",
"passport-localapikey": "0.0.3",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.0.1",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"pre-commit": "^1.1.3",
"supertest": "^1.2.0"
},
"pre-commit": [
"test"
]
}