-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.67 KB
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
{
"name": "api",
"version": "1.0.0",
"description": "Serves API routes for the AUT Shuttle App and interacts with the data layer.",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=test mocha",
"start": "NODE_ENV=production node server.js",
"dev": "NODE_ENV=development nodemon server.js",
"format": "prettier --write --config .prettierrc.json \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aut-shuttle/api.git"
},
"author": {
"name": "Olaf Wrieden",
"email": "olaf@olafwrieden.com",
"url": "https://olafwrieden.com"
},
"contributors": [
{ "name": "Michael Jeffcoat" },
{ "name": "Thea Miguel" },
{ "name": "Hamish Maritz" },
{ "name": "Chenhui Lyu" }
],
"license": "ISC",
"bugs": {
"url": "https://github.com/aut-shuttle/api/issues"
},
"homepage": "https://github.com/aut-shuttle/api#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^1.30.1",
"dotenv-safe": "^6.1.0",
"ejs": "^2.6.1",
"express": "^4.17.0",
"express-validator": "^5.3.1",
"helmet": "^3.18.0",
"morgan": "^1.9.1",
"nodemailer": "^6.1.0",
"nodemailer-mailgun-transport": "^1.4.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"request-ip": "^2.1.3",
"sequelize": "^5.15.1",
"trim-request": "^1.0.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"faker": "^4.1.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"prettier": "^1.17.1"
}
}