-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 980 Bytes
/
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
{
"name": "tec-systems-issue-tracker-server",
"private": true,
"version": "0.1.0",
"engines": {
"node": "^8.4.0"
},
"description": "Node JS server and api for the github-requests app",
"main": "server.js",
"scripts": {
"preinstall": "cd client && npm install --no-optional",
"prestart": "cd client && npm run build",
"start": "node server.js",
"debug-server": "set PORT=4000 && nodemon --inspect server.js",
"debug": "nf start -p 3000"
},
"author": "Clément Bouscasse",
"dependencies": {
"@sendgrid/mail": "^6.1.2",
"body-parser": "^1.17.1",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"file-stream-rotator": "0.2.0",
"foreman": "^2.0.0",
"lodash": "^4.17.4",
"marked": "^0.3.19",
"morgan": "^1.8.1",
"passport": "^0.4.0",
"passport-azure-ad": "^3.0.5",
"request": "^2.81.0",
"secure-compare": "3.0.1"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}