-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "@fll-tms-cloud/server",
"version": "1.0.0",
"description": "Server for the FIRST LEGO League TMS software",
"main": "index.js",
"repository": "https://github.com/FirstLegoLeague/cloud-server.git",
"author": "Roy Shmueli <[email protected]>",
"license": "GPL-3.0",
"private": true,
"engines": {
"node": ">=10.x"
},
"scripts": {
"start": "node index.js",
"lint": "eslint ."
},
"dependencies": {
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.16.2",
"hbs": "^4.0.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongodb": "^3.3.0-beta2",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-first-lego-league": "^1.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.19.1"
}
}