-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "bundle-node",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "./node_modules/nodemon/bin/nodemon.js app.js",
"start:prod": "export NODE_ENV=production&&node app.js",
"lint": "eslint --report-unused-disable-directives .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ARCC-RACE/ARCC-League"
},
"engines": {
"node": "8"
},
"author": "Caelin Sutch",
"license": "ISC",
"bugs": {
"url": "https://github.com/ARCC-RACE/ARCC-League/issues"
},
"homepage": "league.arcc.ai",
"dependencies": {
"app-root-path": "^2.2.1",
"aws-sdk": "^2.525.0",
"body-parser": "^1.18.3",
"config": "^3.0.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.16.4",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.0",
"mongodb": "^3.2.2",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.5.0",
"passport-oauth2-middleware": "^1.0.3",
"passport-oauth2-refresh": "^1.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10"
}
}