-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "issues-tracking-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "",
"start": "node server/app.js",
"test": "./node_modules/.bin/mocha server/tests/**/*.js",
"test-browser": "start chrome http://127.0.0.1:8080/server/tests/index.html && http-server ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Juveniel/IssuesTrackingApp-Server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Juveniel/IssuesTrackingApp-Server/issues"
},
"homepage": "https://github.com/Juveniel/IssuesTrackingApp-Server#readme",
"dependencies": {
"body-parser": "^1.16.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"crypto": "0.0.3",
"express": "^4.14.1",
"express-session": "^1.15.0",
"mongodb": "^2.2.22",
"mongoose": "^4.8.0",
"mongoose-unique-validator": "^1.0.3",
"nodemailer": "^3.1.7",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta10",
"recaptcha2": "^1.3.2"
},
"devDependencies": {
"@types/core-js": "^0.9.35",
"@types/express": "^4.0.35",
"@types/node": "^7.0.4",
"@types/passport": "^0.3.2",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.14.1",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
}
}