-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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": "backend-challenge",
"version": "1.0.0",
"description": "Barstool Backend Challenge written in Node.js",
"author": "Barstool Sports, Inc.",
"license": "MIT",
"dependencies": {
"app-module-path": "2.2.0",
"aws-sdk": "2.887.0",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"express-validator": "6.10.0",
"helmet": "4.4.1",
"lambda-api": "0.10.7",
"lodash": "^4.17.21",
"mongoose": "5.12.3",
"uuid": "8.3.2"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^6.0.0",
"mocha": "^8.1.1",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"require-directory": "^2.1.1",
"serverless-offline": "^6.8.0",
"should": "^13.2.3",
"sinon": "^10.0.0",
"supertest": "^6.1.3"
},
"engines": {
"node": "^14.15.0",
"yarn": "^1.19.1"
},
"scripts": {
"lint": "eslint .",
"start": "npx serverless offline",
"test": "mocha --exit --bail --slow 2000 --timeout 10000 ./test"
}
}