forked from esingletary/summer-learn-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 796 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 796 Bytes
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
{
"name": "summer-learn-api",
"version": "1.0.0",
"description": "The API that provides summer learn bot with data",
"main": "app.js",
"repository": "https://github.com/esingletary/summer-learn-api.git",
"author": "Emmanuel Singletary <me@manny.co>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node app.js",
"test": "jest --forceExit --maxWorkers=4"
},
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"googleapis": "^27.0.0",
"helmet": "^3.12.0",
"moment": "^2.22.1",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"winston": "^2.4.0"
},
"devDependencies": {
"jest": "^22.4.3",
"jest-runner-standard": "^0.0.12",
"standard": "^11.0.0",
"supertest": "^3.0.0"
}
}